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

how to hide the tab navigation #80

Closed youxikaifa closed 6 years ago

youxikaifa commented 8 years ago

if i want hide this tab navigation ,how can i do

jinghun1999 commented 8 years ago

so i'm in the same trobble. how can i hide the bar in the sub page?

toearth commented 8 years ago

Hiding the Tab Bar

You can hide the tab bar by using styles. For example:

let tabBarHeight = 0;

<TabNavigator
  tabBarStyle={{ height: tabBarHeight, overflow: 'hidden' }}
  sceneStyle={{ paddingBottom: tabBarHeight }}
/>

This only works in IOS. It doesn't work in android.

byk04712 commented 7 years ago

I'm in the same trobble. How can i hide the TabNavigator in the sub page, Does anynoe can help us? Thanks.

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.