React-Native到0.44版本后Navigator 不能用的问题

报错:'Navigator is deprecated and has been removed from this package. It can now be installed ' +
           'and imported from `react-native-deprecated-custom-components` instead of `react-native`. ' +
          'Learn about alternative navigation solutions at http://facebook.github.io/react-native/docs/navigation.html'

解决方案:

  1、cd 当前目录

  2、npm install react-native-deprecated-custom-components --save

  3、在使用到Navigator组件时换成 :NavigationExperimental.Navigator即可


你可能感兴趣的:(react-native)