ptomasroos / react-native-tab-navigator

A tab bar that switches between scenes, written in JS for cross-platform support
MIT License
2.4k stars 415 forks source link

style padding error #65

Closed duduzai closed 6 years ago

duduzai commented 8 years ago

if we don't set props 'title',tabs still set paddingBottom.I found the answer in line 50 of Tab.js ,should changet let tabStyle = [styles.container, title ? null : styles.untitledContainer]; to let tabStyle = [styles.container, title === undefined ? null : styles.untitledContainer];

magrinj commented 8 years ago

I remove it in my PR #61

ptomasroos commented 6 years ago

Will close since this issue is more than a year, feel free to a open a new if this is still a issue.