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?

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.
Most helpful comment
Try adding
animate: falseto your bottomTabs options: