We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 425edfe commit 6383c65Copy full SHA for 6383c65
1 file changed
src/libs/Navigation/helpers/linkTo/index.ts
@@ -94,6 +94,12 @@ function shouldChangeToMatchingFullScreen(
94
lastFullScreenRoute: NavigationPartialRoute,
95
) {
96
if (matchingFullScreenRoute.name !== lastFullScreenRoute.name) {
97
+ // HOME has no RHP children (HOME_TO_RHP maps to []).
98
+ // Pushing another fullscreen under HOME causes Android to trim HOME
99
+ // from the render tree, reversing the back animation direction.
100
+ if (lastFullScreenRoute.name === SCREENS.HOME) {
101
+ return false;
102
+ }
103
return true;
104
}
105
0 commit comments