Created
March 2, 2021 11:23
-
-
Save hussainahmad/935ef7c708746c567c3903cc8e56457b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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