Layout.js 220 B

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