【发布时间】:2020-02-15 23:36:36
【问题描述】:
labelStyle 如下应用会导致顶部出现间隙:
const tabNavigator = createBottomTabNavigator(
{
HomeStack,
RecipesStack,
FavoriteStack,
ProductsStack,
},
{
tabBarOptions: {
activeBackgroundColor: '#8BC540',
inactiveBackgroundColor: '#349746',
activeTintColor: '#F5F4F4', // tab text color
inactiveTintColor: '#F5F4F4',
// This messes up the bottom bar
labelStyle: {
marginTop: 15,
marginBottom: 4,
},
},
}
);
它的外观如下:
我想在图标上方、标签和图标之间以及标签下方添加填充。
【问题讨论】:
标签: react-native react-navigation-stack