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
{{ message }}
This repository has been archived by the owner on Feb 16, 2023. It is now read-only.
While we currently support GoBack (1 page)... or GoBackToRoot (within a NavigationPage). There may be times where you simply want to pop the stack to a specified point. For instance if you have a navigation Stack like:
ViewA/ViewB/ViewC/ViewD/ViewE when going back from ViewE you may simply want to go back to ViewB which is neither the root or a single page back.
This will add an overload that will continue navigating back until a specified page is found in the Navigation Stack.
publicinterfaceINavigationService{// API AddedTask<INavigationResult>GoBackAsync(stringname,INavigationParametersparameters);}
The text was updated successfully, but these errors were encountered:
Description
While we currently support
GoBack
(1 page)... orGoBackToRoot
(within a NavigationPage). There may be times where you simply want to pop the stack to a specified point. For instance if you have a navigation Stack like:ViewA/ViewB/ViewC/ViewD/ViewE
when going back from ViewE you may simply want to go back to ViewB which is neither the root or a single page back.This will add an overload that will continue navigating back until a specified page is found in the Navigation Stack.
The text was updated successfully, but these errors were encountered: