gpt4 book ai didi

react-native - 有没有办法更改顶部选项卡导航器的字体颜色和下划线颜色?

转载 作者:行者123 更新时间:2023-12-04 00:26:46 25 4
gpt4 key购买 nike

我正在设置顶部 TabNavigator 的新组件,我想更改字体颜色和标记每个选项卡的下划线颜色

这是一个新组件

const TabNavigator = createMaterialTopTabNavigator(
{
Products: Results,
Brands: Results,
Categories: Results,
UPC: Results,
Tags: Results,
},
{
tabBarOptions: {
style: {
backgroundColor: 'grey',
},
labelStyle: {
fontSize: 9,
margin: 0,
padding: 0,
fontFamily: 'Poppins-bold',
},
},
}
)

我希望更改字体颜色和标记每个选项卡的下划线颜色。

最佳答案

您可以通过在样式tabBarOptions中添加activeTintColorinactiveTintColor来改变字体的背景颜色。

对于指标,使用 indicatorStyle 如下。

tabBarOptions: {
activeTintColor: "white",
inactiveTintColor: "blue",

indicatorStyle :{
backgroundColor:'red'
}

style: {
backgroundColor: 'grey',
},
labelStyle: {
fontSize: 9,
margin: 0,
padding: 0,
fontFamily: 'Poppins-bold',
},
}

关于react-native - 有没有办法更改顶部选项卡导航器的字体颜色和下划线颜色?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56037456/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com