码迷,mamicode.com
首页 > 其他好文 > 详细

react-native 之react-navigation createMaterialTopTabNavigator设置

时间:2020-02-05 13:17:26      阅读:178      评论:0      收藏:0      [点我收藏+]

标签:html   标题   bsp   https   ocs   技术   nbsp   img   中文   

在配置navigationOptions 时可以这样,设置标题和图片icon

navigationOptions:{
          tabBarLabel:(({tintColor,focused})=>{
            return (
              <View>
                <Text style={(item.label==‘计划‘)?styles.labelStyle:styles.noniconlabelStyle}>{item.label}</Text>
              </View>
            )
          }),
          tabBarIcon:(({tintColor,focused})=> {
            return(
                  <View>
                    <Image
                      source={item.icon}
                      style={(item.label==‘计划‘)?styles.iconStyle:styles.noniconStyle}
                    />
                  </View>
              )
          })
        }

技术图片

 

react-navigation 的

createMaterialTopTabNavigator 

API 可参考 官网 https://reactnavigation.org/docs/zh-Hans/material-top-tab-navigator.html

也可参考:https://www.jianshu.com/p/86f37fb7fd02 中文介绍的很详细

 

react-native 之react-navigation createMaterialTopTabNavigator设置

标签:html   标题   bsp   https   ocs   技术   nbsp   img   中文   

原文地址:https://www.cnblogs.com/liuw-flexi/p/12263171.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!