EgorBo / EgorBo/Toasts.Forms.Plugin

Tapping on notification does not work on iOS

Open
#161 1 comment 0 reactions 0 assignees View on GitHub
Dominant language
C#
Stars
275
Forks
81
PR merge metrics
No merged PRs in 30d

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();
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)();

`

Contributor guide

No contributing guide indexed for this repository

Assessment

This issue has not been assessed yet.

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.