Hi,
I have created a Tabbed layout Xamarin project - which implements Xamarin.Forms.Shell framework for navigation.
I simply want to hide the Navigation Bar on the pages.
All the solutions I have read refer to either setting the following on the XAML page
NavigationPage.HasNavigationBar="False"
Or
NavigationPage.SetHasNavigationBar(this, false);
in the code behind.
None of these options seem to be working.
Is there something obvious I am missing to achieve this simple task?