Back button is not visible in maui #3103
Unanswered
FilipRudzinski88
asked this question in
.NET MAUI
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I created an application using MAUI and and prism. When I navigate using navigationService.NavigateAsync(nameof(MauiPage1Page)) there is no back button.
In navigation there is Navigation.NavigationStack there are 2 pages, but there is no back button. Is there any way how can I force to show it?
Back button will be on visible, and can navigate back on windows platforms. I tryied all this methods but it won't help navigationService.NavigateAsync(nameof(MauiPage1Page)) navigationService.NavigateAsync(nameof "/" + (MauiPage1Page)) navigationService.NavigateAsync(nameof "//" + (MauiPage1Page)) navigationService.NavigateAsync("/" + nameof(NavigationPage) + "/" + nameof(MainPage)); navigationService.CreateBuilder().AddNavigationPage().AddNavigationSegment(nameof(VeryMainPage)).NavigateAsync();
Beta Was this translation helpful? Give feedback.
All reactions