I need hide navigation bar in xamarin forms 3.0.
I try this, but dont work: Hide Navigation Bar on MasterDetailPage
I want hide navigation b
On the detail page you have to remove the navigation bar with NavigationPage.SetHasNavigationBar(this, false);
in the constructor right after InitializeComponent()
public partial class MyPage : NavigationPage
{
public MyPage()
{
InitializeComponent();
NavigationPage.SetHasNavigationBar(this, false);
}
}