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
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 :)
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
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