如何在 React Native(android) 中制作图像背景(background-repeat: repeat)



如何在react-native(Android)中制作图像背景。

与 CSS 中的属性一样:background-repeat: repeat

认为这可能是你要找的,即。 调整大小模式='重复'。

https://facebook.github.io/react-native/docs/image.html#resizemode

我认为

你不能这样做。

但您可以改为这样做:
<View style={{height:200,width:300}}>
   <Image source={myImage} resizeMode={"repeat"} >
        {myContenThatGoesOnTopOfImage}
   </Image>
 </View>

更新:我之前的答案是错误的,但我找到了这个解决方案:

https://github.com/haledeng/react-native-knowledge/blob/master/src/Background-image-repeat/background-image-repeat.js

相关内容

  • 没有找到相关文章

最新更新