0.43.0版本之前 Navigator版本可以直接导入
import {
AppRegistry,
StyleSheet,
Text,
View,
Dimensions,
Navigator
} from 'react-native';
0.43.0版本以后,就不行了
直接导入,会报错
- 解决办法,进入当前项目文件,安装Navigator所在的库
yarn add react-native-deprecated-custom-components
- 在使用的js文件中将Navigator引入进来
import {Navigator} from 'react-native-deprecated-custom-components';