Skip to content

Latest commit

 

History

History
12 lines (7 loc) · 247 Bytes

screen-height-width.md

File metadata and controls

12 lines (7 loc) · 247 Bytes

To access a screen height and width in React Native, import Dimension.

Code:


import { Dimensions } from 'react-native'

const SCREEN_WIDTH = Dimensions.get('window').width
const SCREEN_HEIGHT = Dimensions.get('window').height