I\'m completely new to Xamarin.Forms and C#, and I\'m wondering how I can present a stack of Pages within a NavigationPage, without showing the navigation bar. Here\'s my co
In StartPage, add this (in the constructor or ViewAppearing)
NavigationPage.SetHasNavigationBar(this, false);
In XAML it can be done as follows, inside ContentPage definition
XAML
ContentPage
NavigationPage.HasNavigationBar="False"