美文网首页
[React-Native]RN组件学习-ToolbarAndr

[React-Native]RN组件学习-ToolbarAndr

作者: 美乃滋酱啊 | 来源:发表于2016-08-19 15:51 被阅读135次
    <ToolbarAndroid logo={require('./img/ic_tjke_lxr.png')}
                                title='ToolbarDemo'
                                subtitle='这是副标题'
                                actions={toolbarAction}
                                style={styles.toolbarStyle}
                                navIcon={require('./img/ic_tjke_arrow_wx.png')}
                >
    </ToolbarAndroid>
    

    就是这样的:

    toolbar

    其中actions中的内容可以是:

    var toolbarAction = [
        {
            title: '菜单1',
            icon: require('./img/hehe.png'),
        },
        {
            title: '菜单2',
            // show字段用于表明是否隐藏在右边的菜单中还是在显示在toolbar中
            show:'always'
        }
    ]
    

    相关文章

      网友评论

          本文标题:[React-Native]RN组件学习-ToolbarAndr

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