React Native UNMET PEER DEPENDENCY [email protected]

从0.44版本开始,Navigator被从react native的核心组件库中剥离到了一个名为react-native-deprecated-custom-components的单独模块中。如果你需要继续使用Navigator,则需要先npm i -S react-native-deprecated-custom-components,然后从这个模块中import,即import { Navigator } from 'react-native-deprecated-custom-components'.

执行

react-native-deprecated-custom-components

出现问题
UNMET PEER DEPENDENCY [email protected]

解决方法
进入工程目录 执行

 npm init

此时会自动生成一个package.json文件

接下来在执行

react-native-deprecated-custom-components

就可以正常使用了

你可能感兴趣的:(React Native UNMET PEER DEPENDENCY [email protected])