我正在博览会中使用底部导航器。我需要将底部标签设置为透明。
export default createBottomTabNavigator({
FirstTabStack,
SecondTabStack,
ThirdTabStack,
}, {
swipeEnabled:false,
animationEnabled:false,
tabBarOptions: {
showLabel: false,
style: {
height: responsiveHeight(8),
width: '100%',
position: 'absolute',
bottom: 0,
},
}
});
它在iOS上运行良好,但在android上无法点击。
同样的问题here
“反应”:“ 16.5.0”
“反应导航”:“ ^ 3.9.1”
我尝试使用zIndex,但仍然无法正常工作。
谁能解决这个问题或有一个想法制作透明的底部标签导航栏?
干杯!