Reputation: 235
I want to hide the tab bar in a specific screen in react-navigation previously it's possible by passing
tabBarVisible prop
But now I am using a custom tab bar with the help of tabBar prop, Is there any way to hide the bottom tab bar on some screens.
And how to hide the tab bar when the keyboard is active, Already tried tabBarHideOnKeyboard
.
Upvotes: 0
Views: 56
Reputation: 235
For anyone who experiencing the same issue, Nesting the tab navigator inside a stack navigator solved my problem its a bit more complicated than using tabBarVisible
as we need to restructure the code, For ref doc
And couldn't find any good solution for the second part of my problem if I find any I will update my answer
Upvotes: 0