9
8y

TO ANY UWP DEV HERE.
If you aren't handling it in a different way,

//hide mobile status bar
if (ApiInformation.IsTypePresent("Windows.UI.ViewManagement.StatusBar"))
{
var i = StatusBar.GetForCurrentView().HideAsync();
}

this is ALL you have to friggin add to hide that hideous white space above in the app on windows 10 mobile.
Coming across too many apps which don't implement this simple thing.

Comments
  • 0
    The magic string fully-qualified type name makes my eyes twitch.
  • 0
    My parents have both been programmers since the early 80s. It was clear quite early, that I would follow them in their profession.

    No reaction at all 😉
Add Comment