You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Due to the navigation structure of the app, there's is an issue when users navigate from the root navigator into the sharedElementNavigator which is nested inside the bottom tab navigation.
When users navigate from "bookmarks" to "bookDetails" screen, the app has to first navigate to the bottom tabs and then navigate to the shared screens. Therefore the navigation array will be
//because bookDetails is nested inside BottomTabHomeconstnavigationState=["bookmarks","BottomTabHome","bookDetails"]
This means that when users navigate backward, instead of mounting the bookDetails screen, it moves back to the bottom tab navigator and when we press the back button again we are returned to the bookmarks screen
The text was updated successfully, but these errors were encountered:
Due to the navigation structure of the app, there's is an issue when users navigate from the root navigator into the sharedElementNavigator which is nested inside the bottom tab navigation.
Navigation Structure
When users navigate from "bookmarks" to "bookDetails" screen, the app has to first navigate to the bottom tabs and then navigate to the shared screens. Therefore the navigation array will be
This means that when users navigate backward, instead of mounting the bookDetails screen, it moves back to the bottom tab navigator and when we press the back button again we are returned to the bookmarks screen
The text was updated successfully, but these errors were encountered: