How to get screen size in react native
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 (); } How to get screen size in react native,react-native how to get size of screen,get […]









