Fix Navigation Store when dismissing a modal with a gesture

This commit is contained in:
Elias Nahum 2022-06-13 09:58:57 -04:00
parent c5dc41dae3
commit 986de96ba5
No known key found for this signature in database
GPG key ID: E038DB71E0B61702

View file

@ -102,6 +102,10 @@ function screenDidDisappearListener({componentId}: ComponentDidDisappearEvent) {
DeviceEventEmitter.emit(Events.PAUSE_KEYBOARD_TRACKING_VIEW, false);
}
if (NavigationStore.getNavigationTopComponentId() === componentId) {
NavigationStore.removeNavigationComponentId(componentId);
}
if (NavigationStore.getNavigationTopComponentId() === Screens.HOME) {
DeviceEventEmitter.emit(Events.TAB_BAR_VISIBLE, true);
}