Skip to content

Instantly share code, notes, and snippets.

@VivekNayyar
Created May 21, 2018 10:15
Show Gist options
  • Save VivekNayyar/e30b2552439a1a5a504b45fc99266fd3 to your computer and use it in GitHub Desktop.
Save VivekNayyar/e30b2552439a1a5a504b45fc99266fd3 to your computer and use it in GitHub Desktop.
navigationOptions: ({ navigation }) => {
const { routeName, routes } = navigation.state;
let params = routes && routes[1] && routes[1].params;
return {
tabBarVisible:
params && params.hideTabBar != null ? !params.hideTabBar : true,
swipeEnabled:
params && params.hideTabBar != null ? !params.hideTabBar : true
};
},
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment