Skip to content

Instantly share code, notes, and snippets.

@EQuimper
Created August 15, 2017 12:38
Show Gist options
  • Save EQuimper/f35685f23d895b33fd5917d8841e4081 to your computer and use it in GitHub Desktop.
Save EQuimper/f35685f23d895b33fd5917d8841e4081 to your computer and use it in GitHub Desktop.
React-Navigation for know if the root screen. Let us manages back button android.
// @flow
export function isRootScreen(navigator: {
index: ?number,
routes: ?Array<Object>,
}) {
if (navigator.index == null) {
return true;
}
if (navigator.index > 0) {
return false;
}
return (
!navigator.routes || !navigator.routes.find(route => !isRootScreen(route))
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment