I have to show a list of network Images having different aspect ratio. I have to maintain the aspect ratio of images with width = 100% of screen size.
sample example:
<ScrollView>
<Image source={{/* network image url */}} style={{width:100%, height=?}} />
<Image source={{/* network image url */}} style={{width:100%, height=?}} />
<Image source={{/* network image url */}} style={{width:100%, height=?}} />
</ScrollView>
I have to specify the height as per the official doc. But what is the best practice to set the height in this case?