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