摆脱顶部标签的边框(反应导航)

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,

以上是关于摆脱顶部标签的边框(反应导航)的主要内容,如果未能解决你的问题,请参考以下文章

移除 UISearchBar 的上下边框和阴影?

如何摆脱 UISearchBar 的边框?

摆脱 HTML 电子邮件中的表格边框

CSS 摆脱链接的虚线边框

如何摆脱 SwiftUI TextFields 周围的蓝色选择边框?

Xamarin UWP - 如何摆脱悬停在按钮上时出现的边框