Guest User

Untitled

a guest
May 25th, 2018
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. navigationOptions: ({ navigation }) => {
  2. const { routeName, routes } = navigation.state;
  3. let params = routes && routes[1] && routes[1].params;
  4. return {
  5. tabBarVisible:
  6. params && params.hideTabBar != null ? !params.hideTabBar : true,
  7. swipeEnabled:
  8. params && params.hideTabBar != null ? !params.hideTabBar : true
  9. };
  10. },
Add Comment
Please, Sign In to add comment