初始化
<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'
然后就和其他的才能使用