I have an app which has many pages and navigation is enabled between modal and non-modal pages . But somehow whenever I'm trying to set useModalNavigation property as false, it doesn't seem to work. Modal type navigation is suppressing the actual page navigation. Now my app has navigation between modals and root page. Any way out?
My app.xaml.cs has
await NavigationService.NavigateAsync(new Uri($"https://NavigationPage/{nameof(MyMainPage)}", UriKind.Absolute));
In MyMainPage I have a button which is further opening a content page. For this, i have a delegate command which is making below call to navigate to inner page on button click: navigationService.NavigateAsync("MyInnerPage", useModalNavigation:false);