aboutsummaryrefslogtreecommitdiff
path: root/src/utils/screenDimensions.ts
blob: 56277ddc39f92ad00174a759b04f96e7e3616e0f (plain)
1
2
3
4
5
6
import {Dimensions} from 'react-native';

const {width, height} = Dimensions.get('window');

export const SCREEN_WIDTH = width;
export const SCREEN_HEIGHT = height;