I was wondering if anyone knew how to hide the title (gray) bar of a Xamarin Forms Universal Windows Platform application? I've seen some solutions for Android floating around, but I can't extrapolate an equivalent.
One of the Android solutions I've stumbled across: RequestWindowFeature(WindowFeatures.NoTitle);
Any suggestions/ideas would be greatly appreciated, thanks!
Solution:
NavigationPage.SetHasNavigationBar(this, false);
in the codebehind.