skip to Main Content

Problem with Nested Navigators in React Native: The action 'NAVIGATE' with payload … was not handled by any navigator

I am currently using a bottom Tab navigator with a Stack navigator nested inside of it. Tabs.tsx: <NavigationContainer> <Tab.Navigator> // other screens here <Tab.Screen name="Stack" component={StackNavigator} /> </Tab.Navigator> </NavigationContainer> StackNavigator.tsx: const StackNavigator = () => { return ( <Stack.Navigator> <Stack.Screen…

VIEW QUESTION
Back To Top
Search