小编Hus*_*y 的帖子

React Native 如何在启动画面上设置 Gif 图像?

我创建了新的 React Native 移动应用程序,我需要将 gif 图像设置为初始屏幕。任何示例或源代码都可以帮助我做到这一点。

render() {
    return (
      <View style={styles.container}>
        {/*<BackgroundImage source={Images.splashScreen}*/}
        {/*       style = {{width: 315, height: 383}} />*/}

        <Image
            style={{width: 300, height: 200}}
            source={{uri: 'http://gifsstore.com/public/upload/gifs/15609427721560942769.gif'}} />
      </View>
    );
  }
Run Code Online (Sandbox Code Playgroud)

react-native react-native-android react-native-ios

2
推荐指数
1
解决办法
6108
查看次数