美文网首页
NavigatorIOS使用和Navigator使用

NavigatorIOS使用和Navigator使用

作者: 哈灰色 | 来源:发表于2017-07-06 15:50 被阅读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'

    然后就和其他的才能使用

    相关文章

      网友评论

          本文标题:NavigatorIOS使用和Navigator使用

          本文链接:https://www.haomeiwen.com/subject/hjyhhxtx.html