GT2/Ejectable/constants/Layout.ts

13 lines
229 B
TypeScript
Raw Permalink Normal View History

2021-08-16 07:50:50 +00:00
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,
};