Layout.ts 229 B

123456789101112
  1. import { Dimensions } from 'react-native';
  2. const width = Dimensions.get('window').width;
  3. const height = Dimensions.get('window').height;
  4. export default {
  5. window: {
  6. width,
  7. height,
  8. },
  9. isSmallDevice: width < 375,
  10. };