Question:
I’ve been having a problem with NavigationContainer from react-navigation/native. I keep getting an error saying:import { NavigationContainer } from '@react-navigation/native';
imported at the top but I still get the same error. I checked the package.json and it’s installed. I have also uninstalled node_modules twice and I still have the same problem.Answer:
This block hasStackNavigator
as being recursive.StackNavigator
to Stack.Navigator
should resolve the problem.If you have better answer, please add a comment about this, thank you!