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

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