I'm using the normal image tag to display server image but some images are showing properly and some are not.
- I'm using react-native to for android application
- I have used react-native-responsive-dimensions for image sizing relative to screen size.
- Passed image URL through a state.
<View>
<Image
style={{borderWidth:1,
width: responsiveWidth(100),
height: responsiveHeight(50),
resizeMode:'contain'}}
source = {{ uri:this.state.productimage}}/>
</View>