UNPKG

react-native-full-responsive

Version:

Create a fully responsive React Native app for all supported platforms

10 lines (6 loc) 224 B
import { Dimensions } from 'react-native'; const { width: screenWidth, height: screenHeight } = Dimensions.get('window'); const getDimensions = () => { return { screenWidth, screenHeight }; }; export { getDimensions };