Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@hussainahmad
Created March 2, 2021 11:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hussainahmad/935ef7c708746c567c3903cc8e56457b to your computer and use it in GitHub Desktop.
Save hussainahmad/935ef7c708746c567c3903cc8e56457b to your computer and use it in GitHub Desktop.
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 || height <720,
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment