How to hide React Native NavigationBar

后端 未结 11 1746
情书的邮戳
情书的邮戳 2020-12-30 02:25

I have NavigatorIOS under Navigator and would like to hide Navigator\'s NavigationBar to use NavigatorIOS\'s bar. Is there any way to do this?

This is screenshot tha

11条回答
  •  自闭症患者
    2020-12-30 02:44

    Because some old methods are deprecated i used stacknavigator. It works for me, if you are using StackNavigator.

    //******For Older Versions. But Will be Deprecated in future*******
    //static navigationOptions = { title: 'Welcome', header: null };
    
    //For Latest Version Use:
    static navigationOptions = { title: 'Welcome', headerShown: false};
    

    Feel free to contact, if any issue.

提交回复
热议问题