Questions tagged [awesome-notifications]

59 questions
1
vote
1 answer

Flutter: How to get/write data from/to shared preferences from action button's click using Awesome notifications?

I am using Awesome notifications to display notifications in my app. In the notifications, I have an action button, and when pressing it, the app is supposed to read and write some simple data from/to the memory of the phone using shared…
1
vote
0 answers

White circle in notification Samsung s22 ultra, android 13. (Flutter, awesome_notifications)

After the update to android 13, the background color for notifications is not working, the color is always white. await AwesomeNotifications().createNotification( content: NotificationContent( id: 100, channelKey:…
dtrejogo
  • 241
  • 1
  • 6
  • 18
1
vote
0 answers

Flutter Awesome notifications not showing in background or when app is terminated

Good day. I am using Awesome notifications in a food ordering app to notify users when their food is ready. Notifications come through when the app is open, but not when the app is in the background/terminated. Once I re-open the app, all the…
1
vote
0 answers

How to cancel progress bar notification when pressed action button [Flutter Awesome Notifications]

I'm using fcm + awesome notifications and I'm displaying progress bar notification when app receives fcm message. There are two buttons in notification and I wanna cancel notification if user clicks notification action buttons final timers =
1
vote
0 answers

Flutter AwesomeNotification: sound is not playing

I want to customize the sound which should be playing, when my notification gets triggered. Unfortunately, not even the default ringtone works. I have an m4a-file in the folder android/app/src/main/res/raw and no Error shows up. This is my channel…
1
vote
1 answer

Cannot find AwesomeNotifications().actionStream

I would like to add a button to my flutter notification. The button is shown but I can't catch the action. AwesomeNotifications().createNotification( content: NotificationContent( id: 888, channelKey: 'NetVideo', title:…
blacky99
  • 115
  • 1
  • 12
1
vote
0 answers

How to execute actionStream on a notification when application is in terminated state with awesome_notifications in flutter?

I have a flutter application that receives FCM Data messages. On each data message, I create a respective notification locally using the awesome_notifications library. I have 2 action buttons on the notification. The action button click navigates me…
1
vote
0 answers

Flutter awesome notifications cancel not working

I am using awesome notifications in flutter. When ı create notifications with scheduled can't cancelling.I use "await AwesomeNotifications().cancelAllSchedules();" method but not working. Response is successful but not working anyway.
1
vote
0 answers

Flutter Notifications: Display WhatsApp like notification

I am trying to display notifications in my flutter app using awesome_notifications package (https://pub.dev/packages/awesome_notifications) . Below is my code. await AwesomeNotifications().createNotification( content: NotificationContent( …
PeakGen
  • 21,894
  • 86
  • 261
  • 463
1
vote
0 answers

Flutter Awesome Notifications icon color stays black with Firebase?

I'm using the awesome_notifications package for Flutter. When I initialize AwesomeNotifications, I set the defaultColor to Colors.blue. defaultColor: Colors.blue, When I send a push notification locally, the push notification icon is blue. But when…
Page COW
  • 515
  • 13
  • 31
1
vote
0 answers

Flutter awesome_notifications and local_notifications schedule was remove after device rebooted

Schedule notifications doesn't show after I reboot my device. I tried to this following steps but still not working for me. Flutter app BOOT_COMPLETED receiver doesn't work Device : Oppo A92 Android version : 11 Though emulator works fine, but in…
1
vote
1 answer

Flutter Awaesome Notification actionStrem Listen

I am using flutter and for local notification awesome-notification package. I create a notification and send it to the user. When the user clicks on the notification, I will redirect to another page. When the notification that comes on every page of…
zey
  • 177
  • 2
  • 15
1
vote
1 answer

Flutter - How to change the background color of awesome_notification?

I am using the awesome_notification plugin to show scheduled notifications in flutter. Everything works fine, but the notification is so simple-looking. It has a white background and black text. I wonder if there is a way to change the…
1
vote
1 answer

Remote Message is always null Firebase Cloud Messaging

Please tell me what I'm doing wrong. I send a Cloud Message to my device, and when the application is closed, I want to check how it was launched from Push Notification or not. Also, if the application was opened from Push Notifications, I need to…
1
vote
0 answers

Flutter iOS Local notification - is it possible to notify only once?

I'd like to notify user only once, no matter how many local notifications are going to be send with the same ID. I'm using awesome_notifications package. Also tried flutter_local_notifications Imagine the scenario that I'd like to display…