React-Native到0.44版本后Navigator 不能用的问题
Posted 跌倒不要紧,要紧的是赶快爬起来。
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了React-Native到0.44版本后Navigator 不能用的问题相关的知识,希望对你有一定的参考价值。
新升级 到0.46版本以后 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、import {Navigator} from ‘react-native-deprecated-custom-components‘;
4、
<Navigator initialRoute={{ name: ‘首页‘, component: Home }} //配置场景 configureScene= { (route) => { //这个是页面之间跳转时候的动画,具体有哪些?可以看这个目录下, //有源代码的: node_modules/react-native/Libraries/CustomComponents/Navigator/NavigatorSceneConfigs.js // return Navigator.SceneConfigs.PushFromRight; return ({ ...Navigator.SceneConfigs.PushFromRight, gestures: null, }); } } renderScene={ (route, navigator) => { let Component = route.component; return <Component {...route.params} navigator={navigator} /> } } />
以上是关于React-Native到0.44版本后Navigator 不能用的问题的主要内容,如果未能解决你的问题,请参考以下文章
pod installation failed with react native 0.44
将 react-native 升级到最新版本 0.61.4 后找不到以下原生模块
React-Native中导航组件react-navigation的使用