Skip to content
This repository has been archived by the owner on Nov 27, 2022. It is now read-only.

Commit

Permalink
fix: fix scrollbars being always visible in TabBar on web (#997)
Browse files Browse the repository at this point in the history
  • Loading branch information
arnnis authored and satya164 committed Apr 7, 2020
1 parent c242c16 commit 3d3dc13
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/TabBar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -472,7 +472,7 @@ const styles = StyleSheet.create({
flex: 1,
},
scroll: {
overflow: 'scroll',
overflow: Platform.select({ default: 'scroll', web: undefined }),
},
tabBar: {
backgroundColor: '#2196f3',
Expand Down

0 comments on commit 3d3dc13

Please sign in to comment.