Exemple #1
0
 /// <summary>
 /// Shows an alert dialog for acknowledgement. It only has a single, dismissive action used for acknowledgement.
 /// </summary>
 /// <param name="message">The message of the alert dialog.</param>
 /// <param name="title">The title of the alert dialog.</param>
 /// <param name="acknowledgementText">The text of the acknowledgement button.</param>
 /// <param name="configuration">The style of the alert dialog.</param>
 public static async Task ShowAlertAsync(string message, string title, string acknowledgementText, MaterialAlertDialogConfiguration configuration = null)
 {
     await MaterialAlertDialog.AlertAsync(message, title, acknowledgementText, configuration);
 }
Exemple #2
0
 /// <summary>
 /// Shows an alert dialog for acknowledgement. It only has a single, dismissive action used for acknowledgement.
 /// </summary>
 /// <param name="message">The message of the alert dialog.</param>
 /// <param name="configuration">The style of the alert dialog.</param>
 public static async Task ShowAlertAsync(string message, MaterialAlertDialogConfiguration configuration = null)
 {
     await MaterialAlertDialog.AlertAsync(message, configuration : configuration);
 }