最近在使用createStackNavigator这个组件时出现了如下错误:
React Native采坑之:The navigation prop is missing for this navigator.In react-navigation 3 you must set
我运行的代码是
React Native采坑之:The navigation prop is missing for this navigator.In react-navigation 3 you must set

原因:在以前版本react-navigation的App中,容器由create * Navigation方法提供。在react-navigationV3中,需要手动添加createAppContainer
代码如下:
React Native采坑之:The navigation prop is missing for this navigator.In react-navigation 3 you must set
以上操作即可解决此问题

相关文章: