How to get screen size in react native You can achieve this using Dimensions in react native. Please check below code snippet:- import { Dimensions } from 'react-native'; function App(){ const width = Dimensions.get('window').width; const height = Dimensions.get('window').height; return ();