Answers for "how to get full width and height in screen react native"

0

react-native how to get size of screen

import { Dimensions } from 'react-native';

dimensions: {
width: Dimensions.get('window').width,
height: Dimensions.get('window').height
}
Posted by: Guest on June-06-2021
1

how to take 100% width in react native

header : {
	height : 100,
  	backgroundColor: "favorite color",
    alignSelf: "stretch",
}
Posted by: Guest on December-13-2020

Code answers related to "how to get full width and height in screen react native"

Code answers related to "Javascript"

Browse Popular Code Answers by Language