Navigation.mergeOptions(this.props.componentId, {
bottomTabs: {
visible: hideBottom?false:true,
drawBehind: true
}
});

I'm experiencing same issue with the top bar
Navigation.setRoot({
root: {
stack: {
children: [{
component: {
name: "Login",
options: {
topBar: {
visible: false,
}
}
}
}]
}
}
});

@C-ollins You can add drawBehind:true like this
Navigation.setRoot({
root: {
stack: {
children: [{
component: {
name: "Login",
options: {
topBar: {
visible: false,
drawBehind:true
}
}
}
}]
}
}
});
I fixed my issue.
I add tab.requestLayout(); to class BottomTabsPresenter > function name mergeDrawBehind > line 131.
Thanks for the solution.
@danghung24031992 this is wired solution
Happens the same for me in iOS, any solution?