react native Image ImageBackground详解

来源:互联网 发布:淘宝修改中差评步骤 编辑:程序博客网 时间:2024/06/06 03:48

在rn版本0.46版本的时候添加了ImageBackground控件,在0.46版本以后使用Image的时候不能在嵌套使用,ImageBackground就是解决这个问题的,现在如果在 标签中嵌套其他组件现在会报黄盒警告。ImageBackground的使用和Image一样,只不过可以嵌套其他组件了。

<ImageBackground style={{height:100,width:300}} source={require('../../imgs/s63.png')} resizeMode='cover'>                    <Text style={{color:'red',fontSize:24}}> image 嵌入 text</Text>                </ImageBackground>

更多Demo github下载地址

原创粉丝点击