Ejemplo n.º 1
0
        public void Close()
        {
            if (!IsOpen)
            {
                return;
            }

            _currentDialog.Close();
            _currentDialog = null;
        }
Ejemplo n.º 2
0
        public bool ShowTouchable(string title, string content, Action touchedAction)
        {
            if (IsOpen)
            {
                return(false);
            }

            _touchableDialog.Show(title, content, touchedAction);
            _currentDialog = _touchableDialog;
            return(true);
        }