public void Show(bool animated = true)
        {
            ModalPresentationStyle = UIModalPresentationStyle.Popover;
            ModalTransitionStyle   = UIModalTransitionStyle.CoverVertical;
            ModalPresentationCapturesStatusBarAppearance = true;
            var nav = PlatformFunctions.GetNavigationController();

            nav.PushViewController(this, animated);
        }
Beispiel #2
0
 public void GoToTopPage()
 {
     PlatformFunctions.GetNavigationController()?.PopToRootViewController(true);
 }