You are on page 1of 1

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,
};

You might also like