I would like to hide the status bar on one of my pages. It works for android but I can't find a way to accomplish it on iOS.
Creating a custom renderer and overriding PrefersStatusBarHidden()
to return true doesn't work. It looks like Xamarin.Forms wraps the renderer in another controller so the method never gets called. I would have to override the hidden parent controller but I don't think it's possible.
Is there any other (proper) way to hide the status bar on a single page?