Hey to make your image responsive is simple: here is an article i wrote about it. https://medium.com/@ashirazee/react-native-simple-responsive-images-for-all-screen-sizes-with-flex-69f8a96dbc6f
you can simply do this and it will scale
container: {
width: 200,
height: 220
},// container holding your image
image: {
width: '100%',
height: '100%',
resizeMode: cover,
},
});
_x000D_
this is because the container which holds the image determines the height and width, so by using percentages you will be able to make your image responsive to all screens size.
here is another example:
<View style={{
width: 180,
height: 200,
aspectRatio: 1 * 1.4,
}}>
<Image
source={{uri : item.image.url}}
style={{
resizeMode: ‘cover’,
width: ‘100%’,
height: ‘100%’
}}
/>
</View>
_x000D_