我正在研究react-native。我最近遇到了Shoutem UI。我遵循了here提到的步骤。但是,我看到了这个错误屏幕。会出什么问题呢?

发布于 2017-05-29 15:21:50
NavigationExperimental不存在于React Native v0.43.4之前,因此您可能有v0.44或更高版本。
您必须编辑package.json的react-native依赖项:
"react-native": "^0.43.0"
之后:
$ cd ProjectName
$ rm -rf node_modules //get rid of previous dependencies
$ npm install //install dependencies from package.json
$ react-native link
$ react-native run-android这个解决方案来自github issue,来自用户dobrienlzd。
https://stackoverflow.com/questions/44230629
复制相似问题