how to get the image to fit the container react native code example
Example 1: react native image fit container
<Image
style={{
alignSelf: 'center',
height: 150,
width: 150,
borderWidth: 1,
borderRadius: 75
}}
source={{uri:'https://facebook.github.io/react/img/logo_og.png'}}
resizeMode="stretch"
/>
Example 2: react native image when jpeg not fit to container
<Image style={{ alignSelf: 'center', height: 150, width: 150, borderWidth: 1, borderRadius: 75 }} source={{uri:'https://facebook.github.io/react/img/logo_og.png'}} resizeMode="stretch"/>