我正在将背景图像用于React Native应用程序屏幕,并希望将图像压缩到右侧。在iOS上看起来不错,但在Android图像上右侧有填充。为什么会这样呢?如何解决这个问题?谢谢你!
<View style={{width: '100%', height: '100%', backgroundColor: '#fff',}}>
<Image style={{flex: 1, resizeMode: 'contain',}} source={require('./../styles/image/building.png')}/>
</View>