Replies: 1 comment 1 reply
-
Did you solve this? |
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
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
I'm working on bringing an existing project from XamarinForms to Maui. When working on the prism conversion everything works fine except for the fact that I don't have a NavigationBar ...
I can use the back functionality on Android, and that works as expected, but my screen looks like a 'NavigationPage.HasNavigationBar = false' (and no, I did not set that variable and yes, I have tried setting it to 'true' :))
When opening dialogs (with Mopup) it does show the NavigationBar and I have to hide them.
I start from a TabbedPage (this has a NavigationBar where I see the title & have icons). This TabbedPage has a couple of children (tabs) and each child tab page is wrapped in a NavigationPage. As soon as I navigate to a new page, this page goes fullscreen and I lose the NavigationBar.
I hope someone can point me in the right direction because it is driving me crazy :)
Some code:
I call new pages with:
await NavigationService.NavigateAsync(pageToGoToName, navigationParameters);
All pages are 'RegisterForNavigation' with their ViewModel
Any ideas?
Beta Was this translation helpful? Give feedback.
All reactions