Esempio n. 1
0
        public BandLandingPage()
        {
            InitializeComponent();
            if (Device.RuntimePlatform.Equals(Device.iOS))
            {
                this.Children.Add(new UserPopupPage(false)
                {
                    Icon = "ic_user.png", Title = "Profile"
                });
                RootPage.SetHasNavigationBar(this, false);
            }

            this.Title = this.CurrentPage.AutomationId;
            this.CurrentPageChanged += (sender, e) =>
            {
                this.Title = this.CurrentPage.AutomationId;
            };
        }