环境
react-navigation@2.18.2
解释
indicatorStyle -选项卡指示器的样式对象(选项卡底部的行)
需求
1.不展示选项卡底部的行
indicatorStyle: {height: 0}
- 展示底部的行且设置高度宽度颜色,切记使用百分比
indicatorStyle: {
height: 2,
backgroundColor:"#0493FF",
width:"20%",
left:"15%"
}
react-navigation@2.18.2
indicatorStyle -选项卡指示器的样式对象(选项卡底部的行)
1.不展示选项卡底部的行
indicatorStyle: {height: 0}
indicatorStyle: {
height: 2,
backgroundColor:"#0493FF",
width:"20%",
left:"15%"
}