コード例 #1
0
 protected void OkCancelAlert(string title, Action okAction, string msg = null, Action cancelAction = null,
                              string okActionText = null, string cancelActionText = null)
 {
     AlertRequestLiveData.PostValue(AlertRequest.OkCancelAlertRequest(
                                        title, okAction, msg, cancelAction, okActionText, cancelActionText));
 }
コード例 #2
0
 protected void OkAlert(string title, string msg = null, Action okAction = null, string okActionText = null)
 {
     AlertRequestLiveData.PostValue(AlertRequest.OkAlertRequest(title, msg, okAction, okActionText));
 }