Skip to content

Commit

Permalink
fix: fix border showing on hidden tab bar. closes #8869
Browse files Browse the repository at this point in the history
  • Loading branch information
satya164 committed Sep 22, 2020
1 parent 2bb6603 commit 9b03c8e
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion packages/bottom-tabs/src/views/BottomTabBar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,10 @@ export default function BottomTabBar({
{
translateY: visible.interpolate({
inputRange: [0, 1],
outputRange: [layout.height + paddingBottom, 0],
outputRange: [
layout.height + paddingBottom + StyleSheet.hairlineWidth,
0,
],
}),
},
],
Expand Down

0 comments on commit 9b03c8e

Please sign in to comment.