我正在使用普通的图像标签来显示服务器图像,但是某些图像显示正确,而某些图像显示不正确。
<View>
<Image
style={{borderWidth:1,
width: responsiveWidth(100),
height: responsiveHeight(50),
resizeMode:'contain'}}
source = {{ uri:this.state.productimage}}/>
</View>
答案 0 :(得分:1)
如果您想在网格中显示服务器映像,那么这可能对您有用
<Image source={{uri:"http://pngimg.com/uploads/google/google_PNG19632.png"}} style={{height:null,width:null,flex:0.5,resizeMode:'contain'}} />
或更改resizeMode:“ cover”
答案 1 :(得分:0)
在图像标签样式中提供高度-宽度
<Image
source = {{ uri:"http://pngimg.com/uploads/google/google_PNG19632.png" }}
style = {{ height:100, width:100 }}/>