Inheritance: Rg.Plugins.Popup.Pages.PopupPage
Exemplo n.º 1
0
        public MainPage()
        {
            InitializeComponent();

            PopupNavigation.Instance.Pushing += (sender, e) => Debug.WriteLine($"[Popup] Pushing: {e.Page.GetType().Name}");
            PopupNavigation.Instance.Pushed  += (sender, e) => Debug.WriteLine($"[Popup] Pushed: {e.Page.GetType().Name}");
            PopupNavigation.Instance.Popping += (sender, e) => Debug.WriteLine($"[Popup] Popping: {e.Page.GetType().Name}");
            PopupNavigation.Instance.Popped  += (sender, e) => Debug.WriteLine($"[Popup] Popped: {e.Page.GetType().Name}");

            _loginPopup = new LoginPopupPage();
        }
Exemplo n.º 2
0
        public MainPage()
        {
            InitializeComponent();

            _loginPopup = new LoginPopupPage();
        }
Exemplo n.º 3
0
        public MainPage()
        {
            InitializeComponent();

            _loginPopup = new LoginPopupPage();
        }