Issue
So I am making a bottom navigation bar for a react native app, and the bottom navigation bar has a white line on top as so:
I made an expo snack that reproduces this, I hope someone can find a solution :))
I tried tweaking the positioning and playing around with style props, but the white line is seemingly always there.
Solution
Set borderTopWidth to zero.
screenOptions={{
tabBarStyle: {
backgroundColor: '#272929',
...
borderTopWidth: 0,
},
}}
Answered By - user18309290
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.