Open
Description
I have noticed an unusual bug for iOS where tapping on toast will only work for the first notification and never for any succeeding notifications. We are using Xamarin in our mobile app and the code works fine for Android.
`
var notificator = InjectionContainer.Instance.Resolve<IToastNotificator>();
var options = new NotificationOptions()
{
Description = message,
};
if (notification.Type != "Broadcast") options.IsClickable = true;
var result = await notificator.Notify(options);
if (result.Action == NotificationAction.Clicked) await HandleToastAction(notification)();
`
Metadata
Metadata
Assignees
Labels
No labels