dhanielB
dhanielB

Reputation: 3

React Navigation - 1 pixel of tab color is white

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

Upvotes: 0

Views: 97

Answers (1)

Mohan Murugesan
Mohan Murugesan

Reputation: 276

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

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

Upvotes: 1

Related Questions