Tabs overlay windows topbar in .NET MAUI Windows App

Viewed 27

I am developing a .NET MAUI Blazor hybrid App. The first page is a loginpage, and when the user is logged in, he/she is redirected to the Mainpage which is a tabbed page with the command : Application.Current.MainPage = new NavigationPage(new MainPage());

When testing the application in Windows Machine simulater the tabs is overlaying the top windows bar (se image).

Any idea why this is happening? How can i move the tabs lower?

enter image description here

Regards.

1 Answers

You can use code snippet below to navigate to other pages on Blazor Hybrid project.

App.Current.MainPage.Navigation.PushModalAsync(new MainPage());
Related