【发布时间】:2018-03-22 13:50:36
【问题描述】:
我在 react native 项目中使用React Navigation 进行路由和导航。我有一个底部标签栏组件,它部分隐藏在 Android 中。
TabNavigator
...
{
lazy: true,
tabBarPosition: 'bottom',
animationEnabled: false,
initialRouteName: 'Schedule',
swipeEnabled: false,
tabBarOptions: {
showIcon: true,
showLabel: true,
allowFontScaling: true,
upperCaseLabel: false,
activeTintColor: Colors.white,
inactiveTintColor: Colors.darkGrey,
indicatorStyle: {
// backgroundColor: 'transparent',
},
labelStyle: {
fontSize: 15,
fontWeight: '500',
},
style: {
backgroundColor: Colors.darkBlue,
height: 50,
},
iconStyle: {
height: TAB_ICON_SIZE,
width: TAB_ICON_SIZE,
padding: 0,
margin: 0,
},
},
},
【问题讨论】:
标签: android android-layout react-native tabs react-navigation