Answers for "how to style image in react native"

1

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"
/>
Posted by: Guest on November-04-2020
0

resize image react native

image : {
		width      : null,
		resizeMode : 'contain',
		height     : 220
	}
Posted by: Guest on December-09-2020
3

photo in React native

// useing require is more secure
<Image 
	source = {require('C:/Users/Tutorialspoint/Desktop/NativeReactSample/logo.png')} 
/>
Posted by: Guest on September-16-2020

Code answers related to "how to style image in react native"

Code answers related to "Javascript"

Browse Popular Code Answers by Language