Plugin.LocalNotification icon indicating copy to clipboard operation
Plugin.LocalNotification copied to clipboard

How does group notification work?

Open dg2k opened this issue 8 months ago • 1 comments

First of all, I do not think the code for group notification Wiki is correct. There is no Group property for NotificationRequest.Android and the code examples shown won't compile.

var notification = new NotificationRequest { NotificationId = 100, Title = "Summary", Description = "Summary Description", Android = { Group = "example.GROUP_01", IsGroupSummary = true } }; LocalNotificationCenter.Current.Show(notification);

The property setting Group = "example.GROUP_01", is an issue.

The example code being erroneous, what is the correct way to set a group notification whereby notifications are shown as stacked under a group (to be expanded and collapsed)?

dg2k avatar May 27 '24 03:05 dg2k