Skip to content

Tapping on notification does not work on iOS #161

Open
@amalwankar

Description

@amalwankar

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

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions