NavigatorIOS使用和Navigator使用

2017-07-06  本文已影响0人  哈灰色

初始化

<NavigatorIOS

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'

然后就和其他的才能使用

上一篇下一篇

猜你喜欢

热点阅读