作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想在我的 native 应用程序中使用背景图片,
图像比屏幕小,所以我必须拉伸(stretch)它。
但如果图像是 则不起作用从 Assets 包加载
var styles = StyleSheet.create({
bgImage: {
flex: 1,
flexDirection: 'row',
justifyContent: 'center',
alignItems: 'stretch',
resizeMode: 'stretch',
},
welcome: {
fontSize: 20,
textAlign: 'center',
margin: 10,
}
});
<Image source={require('image!background')} style={styles.bgImage}>
<Text style={styles.welcome}>
Welcome to React Native!
</Text>
</Image>
source={{uri: 'background-image-uri'}}
:
最佳答案
对我来说使用 undefined
而不是 null
值(value)。在 typescript 环境下,会提示 not assignable
bgImage: {
flex: 1,
width: undefined,
height: undefined,
resizeMode: 'stretch',
},
关于react-native - 如何在 React Native 中将静态图像拉伸(stretch)为背景?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30273624/
我是一名优秀的程序员,十分优秀!