On UWP, no navigation bar is shown with Forms version 3.1.0.637273. Works as expected on version 3.1.0.583944.
Add the following to create the first page:
```public partial class App : Application
{
public App()
{
InitializeComponent();
var page = new ContentPage { BackgroundColor = Color.Blue, Title = "Page title" };
MainPage = new NavigationPage(page);
}
}
Run the UWP app
Page will show with a navigation bar displaying the page title
Page shows but there is no navigation bar and page title is not displayed
Platform Target Frameworks:
Nuget Packages: Forms
Expected result:
Actual result:
Any chance to get a fix for this in 3.1? 3.2 seems too far away and still too buggy
FYI, this was released in the latest service release of 3.1. Thank you!
Most helpful comment
Any chance to get a fix for this in 3.1? 3.2 seems too far away and still too buggy