我正在使用从 导入的 ImageBackground 组件,react-native
但没有显示图像。只是背景中的白屏
constructor(props){
super(props)
this.backgroundImage = {image: {uri: "https://i.myImage.com"}}
}
......
<ImageBackground style={styles.container} resizeMode="stretch" source={this.backgroundImage} onError={this.onError.bind(this)}>
<AdUnit style={styles.bannerAd} />
<Board />
</ImageBackground>
我试过this.backgroundImage
改成{image: require('../assets/images/default_seal.jpg')}
我尝试使用此答案指定的 resizeMode 属性,但它不起作用。