Layout.js 186 B

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