예제 #1
0
 public static async Task DisplayAlertAsync(this INavigation navigation, string title, string message)
 {
     await navigation.DisplayPopupAsync <AlertPopupPageModel, AlertPopupModel>(
         new AlertPopupPage(),
         new AlertPopupModel { Title = title, Message = message });
 }