aboutsummaryrefslogtreecommitdiff
path: root/mobile/constants/Layout.js
blob: 1a15a93743794070a4df9f78e64cd89cbf3e4f4e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
import { Dimensions } from 'react-native';

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

export default {
  window: {
    width,
    height,
  },
  isSmallDevice: width < 375,
};