Esempio n. 1
0
        protected override void OnAfterRender(bool firstRender)
        {
            if (firstRender)
            {
                Events.ModalEvent += ShowModal;
            }

            bool firstTimeLaunch = !LocalStorage.HasFirstTimeLaunchKey();

            if (firstTimeLaunch)
            {
                LocalStorage.AddHasFirstTimeLaunchKey();
                Events.ShowModal(this, "Welcome!", "This is a demo app for buying theatre tickets and no data is real. You can read more at about and github!");
            }
        }