Moh*_*zad 8 layout background-image reactjs react-native
现在我正在使用下面的代码设置背景图像,其中创建一个额外的图像视图以在视图上设置图像并且其工作正常.
<View>
<Image
style={{
height:67 ,
width: width}
source={Images.header_bachkground}/>
</View>
Run Code Online (Sandbox Code Playgroud)
现在我的问题是:有没有办法直接在视图上设置背景图像,如:
<View
style={{
height:67 ,
width: width}
source={Images.header_bachkground}>
</View>
Run Code Online (Sandbox Code Playgroud)
上面的代码对我不起作用.
您无法为视图设置图像背景。尝试添加<Image>
为所有内容视图的父级,如下所示
<Image source={require('image!background')} style={styles.container}>
... Your Content ...
</Image>
Run Code Online (Sandbox Code Playgroud)
参考这个SO线程
归档时间: |
|
查看次数: |
14401 次 |
最近记录: |