React Native BackgroundImage 不显示所需的 GIF - iOS
React Native BackgroundImage doesn't show required GIFs - iOS
是否可以在 iOS 上使用 React-Native 显示带有 -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%'}} />
我将使用带 "require" 的 ImageBackground 在 IOS 上显示动画 GIF。
Android.
一切正常
希望有人能帮帮我。
当然,它也适用于 IOS。您可以使用 https://snack.expo.io
对其进行测试
Here 正在使用 IOS 中的 ImageBackground 组件。
是否可以在 iOS 上使用 React-Native 显示带有 -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%'}} />
我将使用带 "require" 的 ImageBackground 在 IOS 上显示动画 GIF。 Android.
一切正常希望有人能帮帮我。
当然,它也适用于 IOS。您可以使用 https://snack.expo.io
对其进行测试Here 正在使用 IOS 中的 ImageBackground 组件。