Spaces:
Runtime error
Runtime error
File size: 229 Bytes
0924f9b |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
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,
};
|