https://reactnative.dev/docs/dimensions Dimensions · React Native useWindowDimensions is the preferred API for React components. Unlike Dimensions, it updates as the window's dimensions update. This works nicely with the React paradigm. reactnative.dev import {Dimensions} from 'react-native'; const windowWidth = Dimensions.get('window').width; const windowHeight = Dimensions.get('window').height..