React Navigation how to hide tabbar from inside stack navigation
问题 I have the following stack navigation and screens: export const HomeStack = createStackNavigator({ Home: HomeScreen, Categories: CategoriesScreen, Products: ProductsScreen, ProductDetails: ProductDetailsScreen, }) I want to hide tabs only in ProductDetailsScreen export const hideTabBarComponents = [ 'ProductDetails', ] export const MainTabs = createBottomTabNavigator( { Home: HomeStack, Favorite: FavoriteScreen, Account: AccountScreen, Help: HelpScreen, Events: EventsScreen }, {