Closed YComputer closed 9 years ago
TabItems have a prop called titleStyle: https://github.com/exponentjs/react-native-tab-navigator/blob/e837d9d52fa299ad36945e785f47473027bb9017/TabNavigator.js#L116
Hello, like so:
<Tab.Navigator
tabBarOptions={{
activeTintColor: "#50d3a7",
inactiveTintColor: "gray",
labelStyle: {
fontSize: 15,
},
}}
>
you can also try this way:
<Tab.Screen name="tabName" component={componentName} options={{
tabBarLabelStyle: {
fontSize: 12,
fontWeight: "bold",
}
}} />
how to set the text's fontsize in the tabbar?