Last active
May 2, 2020 16:41
-
-
Save andreferi3/41d8136764ea1979600b4deb41eb8655 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
| const STATUSBAR_HEIGHT_EXPO = | |
| global.__expo && global.__expo.Constants | |
| ? global.__expo.Constants.statusBarHeight | |
| : 0; | |
| const STATUSBAR_HEIGHT = Platform.select({ | |
| android: STATUSBAR_HEIGHT_EXPO, | |
| ios: Platform.version >= 11 ? 0 : STATUSBAR_HEIGHT_EXPO | |
| }); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment