摆脱顶部标签的边框(反应导航)
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了摆脱顶部标签的边框(反应导航)相关的知识,希望对你有一定的参考价值。
我正在使用react-navigation,当我使用top-tab和stack时,会出现此边框。enter image description here
我该如何删除?我的代码看起来像这样
const ShoutoutTopTab = createMaterialTopTabNavigator();
const ShoutoutTopTabScreen = () =>
return (<ShoutoutTopTab.Navigator
tabBarOptions=
indicatorStyle: backgroundColor:'#4A6159',
tabStyle:
>
<ShoutoutTopTab.Screen name="GLOBAL" component=GlobalShoutout/>
<ShoutoutTopTab.Screen name="COUNTRY" component=CountryShoutout/>
</ShoutoutTopTab.Navigator>)
答案
尝试一下
tabBarOptions =
indicatorStyle: backgroundColor: '#4A6159' ,
tabStyle:
borderBottomWidth: 0
>
另一答案
您可以这样操作:
headerStyle:
borderBottomWidth: 0,
以上是关于摆脱顶部标签的边框(反应导航)的主要内容,如果未能解决你的问题,请参考以下文章