public void GenerateNotificationFeedback(UINotificationFeedbackType notificationType)
 {
     DispatchQueue.MainQueue.DispatchAsync(() =>
     {
         this.notification.NotificationOccurred(notificationType);
     });
 }
Example #2
0
 public static void Trigger(UINotificationFeedbackType style = UINotificationFeedbackType.Success)
 {
     Notification.Prepare();
     Notification.NotificationOccurred(style);
 }