react native window dimensions 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: react native dimensions window vs screen
const screenHeight = Math.round(Dimensions.get('window').height);
Example 3: react native dimensions window vs screen
const screenWidth = Math.round(Dimensions.get('window').width);