Undefined is not an object(evaluating'_react3.default.PropType.shape')
来源:4-4 项目启动引导流程实现
慕田峪7746316
2018-01-10
通过导入 import { Navigator } from 'react-native-deprecated-custom-components';
报
React native Undefined is not an object(evaluating'_react3.default.PropType.shape')
错误,百度出的方法都没法解决
写回答
1回答
-
CrazyCodeBoy
2018-01-15
在 React 16.0正式版中已经不再支持PropType了;
Navigator中使用了PropType,在最新版的RN中使用了React 16,所以react-native-deprecated-custom-components不支持最新版的RN的;
解决方案:
1. 使用react-native 0.50以下版本的RN初始化项目:
react-native init demo --version 0.48.0
2. 或者改为使用 react-navigation;
00
相似问题