After it was fixed in https://github.com/wix/react-native-navigation/issues/4161
Issue is back but now bottomTabs become visible when I change current Tab.
On the first tab it is not visible.
Navigation.mergeOptions(componentId, {
bottomTabs: {
visible: false,
animate: false,
drawBehind: true,
currentTabIndex: NEWINDEX
}
});
Also I have set
Navigation.setDefaultOptions({
bottomTabs: {
visible: false,
drawBehind: true,
animate: false
}....
And alsovisible: false in my setRoot bottomTabs
Navigation.setDefaultOptions({
bottomTabs: {
visible: false,
drawBehind: true,
animate: false
}
})
and use to change tab.
Navigation.mergeOptions(componentId, {
bottomTabs: {
visible: false,
animate: false,
drawBehind: true,
currentTabIndex: NEWINDEX
}
});
bottom tab becomes visible.

Clarification: Maybe it is not bottomTabs but some white area will appear in the place of bottomTabs.
same issue
Same issue here too
Edit. I'm not having this problem on iOS. I am seeing this on Android.
Doesn't seem to reproduce in version 2.0.2620. Can you please check with this version?
4f3cbf0ab3b5270eb358a974bb17d28e0ea22dc8 should solve all latest issues related to defaultOptions
@yogevbd seems like fixed. No issues on iOS and android
Most helpful comment
Clarification: Maybe it is not bottomTabs but some white area will appear in the place of bottomTabs.