Hello!
I want to hide the navigation bar on a Forms-Xaml-cross platform app. I'm using NavigationPage.SetHasNavigationBar and it works on iOS but Android keeps showing the bar
public Login ()
{
NavigationPage.SetHasNavigationBar (this, false);
InitializeComponent ();
}
I have tried to write SetHasNavigationBar after InitializeComponent but still does not work. What I am doing wrong?