Deeplink with last page being a modal? #2689
Replies: 1 comment 1 reply
-
Solved it as you often do quickly after asking the question but it might help somebody else. INavigationResult result = await ((CustomViewModelBase)CurrentPage.BindingContext).NavigationService.NavigateAsync(string.Format("{0}/{1}", PageNames.SecurityPage, string.Format("{0}?useModalNavigation=true", PageNames.PinCodeSetupPage))).ConfigureAwait(true);
if (!result.Success)
{
result.Exception.WriteToConsole();
} |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi all,
I am doing tab selection, deep linking then finally the last page of the deep linking should be a modal page.
This looks like the following with the tab selection omitted:
I want the PinCodeSetupPage to launch as a modal navigation, I setup the useModalNavigation as true but launches the SecurityPage also as a modal. Is there a way to be specific which page launches as a modal in deep linking as the above?
Thanks guys!
Beta Was this translation helpful? Give feedback.
All reactions