Exemple #1
0
    public void DisplayOkCancelPopup(string title, string message, Action onOkClick)
    {
        var args = new PopupEventArgs(true, false, title, message, onOkClick);

        OnPopupUpdated?.Invoke(this, args);
    }
Exemple #2
0
    public void DisplayLoader(string title)
    {
        var args = new PopupEventArgs(true, true, title, string.Empty, null);

        OnPopupUpdated?.Invoke(this, args);
    }