Skip to content

Instantly share code, notes, and snippets.

@ide
Last active October 19, 2015 09:19
Show Gist options
  • Save ide/444cbccf40a3ba5cf721 to your computer and use it in GitHub Desktop.
Save ide/444cbccf40a3ba5cf721 to your computer and use it in GitHub Desktop.
Showing the focus and blur methods on a route
function getHomeRoute() {
return {
// Implement onWillFocus, onDidFocus, onWillBlur, or onDidBlur
onWillFocus(event) {
// The event is the one from React Native's Navigator. See the source code
// for what properties it has.
},
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment