dimensions height react native code example
Example 1: device height react native
import { Dimensions } from 'react-native';
console.log({
width: Dimensions.get('window').width,
height: Dimensions.get('window').height
})
Example 2: width 100% react native
import { Dimensions } from 'react-native';
width: ${(Dimensions.get('window').width)}px;