Skip to content

Instantly share code, notes, and snippets.

@andreferi3
Last active May 2, 2020 16:41
Show Gist options
  • Select an option

  • Save andreferi3/41d8136764ea1979600b4deb41eb8655 to your computer and use it in GitHub Desktop.

Select an option

Save andreferi3/41d8136764ea1979600b4deb41eb8655 to your computer and use it in GitHub Desktop.
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