public static void SetModalPagePresentationStyle(this XFPage page, MvxFormsModalPresentationStyle presentationStyle) { if (page == null) { throw new ArgumentNullException(nameof(page)); } page.On <iOS>().SetModalPresentationStyle((UIModalPresentationStyle)presentationStyle); }
public override void ApplyPageBehaviors(Xamarin.Forms.Page page) { base.ApplyPageBehaviors(page); page.On <iOS>().SetLargeTitleDisplay(LargeTitleDisplayMode.Never); }