react native image resize code example
Example 1: resize image react native
image : {
width : null,
resizeMode : 'contain',
height : 220
}
Example 2: react native asign width to image
import { Dimensions } from "react-native";
const win = Dimensions.get('window');
<Image
style={{
width: win.width/2,
height: win.width/2,
resizeMode: "contain",
alignSelf: "center",
borderWidth: 1,
borderRadius: 20,
}}
source={{uri:'https://facebook.github.io/react/img/logo_og.png'}}
resizeMode="stretch"
/>
Example 3: resize image react native
flex: 1,
width: 50,
height: 50,
resizeMode: 'contain'
Example 4: 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"/>
Example 5: react native asign width to image
First import Dimensions from react-native
import { Dimensions } from 'react-native';
then you have to get the dimensions of the window
const win = Dimensions.get('window');
Now calculate ratio as
const ratio = win.width/541;
now the add style to your image as
imageStyle: {
width: win.width,
height: 362 * ratio,
}