I'm developing my first react native app. I've an issue with the nested navigations in the app.
I've the following navigations:
- Main App Navigator : createStackNavigator
- Authentication Navigator : createStackNavigator
- Bottom Bar Navigator : createBottomTabNavigator
- Top Tab Navigator : createMaterialTopTabNavigator
- My too nested Navigator : createStackNavigator
- Top Tab Navigator : createMaterialTopTabNavigator
What i want ?
- I'm trying to hide the BottomBar & TopTab Navigators headers form a screen in the last nested navigator.
What I did?
- Ive tried to set the header as null in my nested nav, but thats hides the nested header not the parents headers.
- I also tried to set the parents headers as nulls, but thats hide them from all screen.