NavigatorIOS使用和Navigator使用

初始化

style={{flex:1}}/>

initialRoute={{

component: List,

title:'列表',

passProps: {},

}}


启动页面

goTo() {

this.props.navigator.push({

component: PageOne,

title:'详情',

rightButtonTitle:'收藏',

onRightButtonPress:function() {

alert('点击了收藏按钮。');

}

});

}

先安装

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

react-native link

import{Navigator}from'react-native-deprecated-custom-components'

然后就和其他的才能使用

你可能感兴趣的:(NavigatorIOS使用和Navigator使用)