React-native-navigation: Completely disable bottom tabs

Created on 25 Mar 2019  ·  3Comments  ·  Source: wix/react-native-navigation

Issue Description

Since I want to implement custom tabs and be able to customize it I disabled native bottom tabs and rendered a custom bottom tab component with react native components. I use "setDefaultOptions" as first thing on "registerAppLaunchedListener" event, something like this:

Navigation.events().registerAppLaunchedListener(() => {
            Navigation.setDefaultOptions({
                bottomTabs: {
                    visible: false,
                    height: 0,
                }
            });
            Navigation.setRoot({
                root: {
                    component: {
                        name: LANDING,
                    },
                },
            });
}

The problem is on app startup native bottom tabs view will be displayed and immediately hides.
How can I completly disable native bottom tabs view?

Screenshots

Alt Text


Environment

  • React Native Navigation version: 2.13.1
  • React Native version: 0.59.0
  • Platform(s) (iOS, Android, or both?): Android
🏚 stale

Most helpful comment

Try adding animate: false to your bottomTabs options:

Navigation.setDefaultOptions({
   bottomTabs: {
      animate: false,
      visible: false,
      height: 0,
   }
});

All 3 comments

Try adding animate: false to your bottomTabs options:

Navigation.setDefaultOptions({
   bottomTabs: {
      animate: false,
      visible: false,
      height: 0,
   }
});

This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs.
If you believe the issue is still relevant, please test on the latest Detox and report back. Thank you for your contributions.

The issue has been closed for inactivity.

Was this page helpful?
0 / 5 - 0 ratings

Related issues

ghost picture ghost  ·  3Comments

kiroukou picture kiroukou  ·  3Comments

switchtrue picture switchtrue  ·  3Comments

charlesluo2014 picture charlesluo2014  ·  3Comments

yedidyak picture yedidyak  ·  3Comments