awesome_notifications icon indicating copy to clipboard operation
awesome_notifications copied to clipboard

A complete solution to create Local Notifications and Push Notifications, throught Firebase or another services, using Flutter.

Results 120 awesome_notifications issues
Sort by recently updated
recently updated
newest added

- modified .gitignore to include other unuseful files; - deleted discontinued .packages; - formatted CHANGELOG.MD; - replace discontinued FlatButton with TextButton; - removed 'dart:typed_data' because it's already included in other...

I am using this package to create a notification media player, and when I click pause/play I am firing a new notification to display the right buttons. But there is...

Fix-Notification-Life-Cycle-Typo Replaced "cretedStream" with "createdStream" Replaced "Fisical Device" with "Physical Device"

As title says, on both Android and iOS, following the official Awesome Notifications - Firebase implementation the notifications messages pop up twice. The only solution I found to avoid this...

I get Invalid notification (no valid small icon): FROM EXAMPLE

On iOS devices, background notification clicks cannot navigate to its screens

I am having the same issue as mentioned in #23 (Bad state: Stream has already been listened to.) However I also could not create a working example using the suggested...

My app crashed on iOS 13 with this message `Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: 'Attempt to insert non-property list object` The log shows something like this: ```...

When FCM-ing a notification, the code would go into infinite loop. This https://github.com/rafaelsetragni/awesome_notifications/issues/299 fixed it. ie, commenting out ``` // if #available(iOS 10.0, *) { // UNUserNotificationCenter.current().delegate = self as?...

AwesomeNotifications().createNotification( content: NotificationContent( id: Random().nextInt(1000), channelKey: "basic_notification", title: notification['title'], body: notification['body'], payload:payload, displayOnBackground: true, displayOnForeground: true, notificationLayout: NotificationLayout.BigPicture, wakeUpScreen: true, fullScreenIntent: true, icon: "resource://drawable/logo", largeIcon: notification['image'], hideLargeIconOnExpand: true, bigPicture: notification['image'],...