How does group notification work?
dg2k opened this issue · 1 comments
dg2k commented
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)?