Home > Software design >  React Navigation - 1 pixel of tab color is white
React Navigation - 1 pixel of tab color is white

Time:01-08

How do I solve this problem where there is 1 pixel of white in the tab bar (as demonstrated in the photo)?

I'm using React Navigation.

enter image description here

CodePudding user response:

Adding borderTopWidth:0 to style in tabBarOptions will fix this issue.

 <Tab.Navigator
 ......
 tabBarOptions={{
         ...
          style: {
            ...
            borderTopWidth: 0,
          },
}}
/>

  •  Tags:  
  • Related