React Native BackgroundImage不显示所需的GIF-iOS

时间:2018-06-30 13:20:43

标签: react-native io gif react-native-ios imagebackground

是否可以在带有React-Native的iOS上以-source = {require(...)}显示动画GIF?

以下示例不起作用:

<ImageBackground source={require(...)} style={{width:'100%',height:'100%'}} />

此示例有效:

<Image source={{uri: 'https://media.giphy.com/media/JQ3IMbDi5Jkw8/giphy.gif'}} style={{width:'100%',height:'100%'}} />

我将使用ImageBackground和“ require”在IOS上显示动画GIF。 一切都可以在Android上运行。

我希望有人能帮助我。

谢谢

1 个答案:

答案 0 :(得分:0)

OfCourse,它也可以在IOS上运行。您可以使用https://snack.expo.io

对其进行测试

Here在IOS中使用ImageBackground组件。