Hiding iPhone X home indicator bar

Has anyone had any luck doing this with MonoGame? Googling I only get results for Xamarin Forms.

If anyone else has this issue I had to add these lines in the iOS11 region of iOSGameViewController and rebuild MonoGame

public override bool PrefersHomeIndicatorAutoHidden => true;
public override UIViewController ChildViewControllerForHomeIndicatorAutoHidden => null;

public override void ViewDidAppear(bool animated)
{
    base.ViewDidAppear(animated);
    SetNeedsUpdateOfHomeIndicatorAutoHidden();
}