Questions tagged [flutter-notification]

117 questions
2
votes
1 answer

How to send a recurring local notification at a time set by user?

I am making a medicine app in flutter in which users can set(input) the time at which they have to take medicines and the app will remind them by sending a notification at the scheduled time. However, I cann't figure out how to send notification to…
2
votes
1 answer

How to change background color of notification flutter_local_notification?

I am using the flutter_local_notification package for showing the notification. For example, I want to change the background color of notifications to blue, but using the color property in notification detail changes the text color of the App name…
2
votes
0 answers

Flutter Firebase Notification on Web

In my flutter project, I already have notifications set up using firebase_messaging for Android and iOS. I am trying to add the same for Web. I had tried it before (mostly changing index.html with firebase-configs and initializing), but it had not…
beria
  • 153
  • 1
  • 6
2
votes
1 answer

How to implement a local notification in flutter web

I need to show a notification on flutter web receiving from an MQQT broker , while chrome is minimized or is on the other tabs .( like Local Notification in android or ios )
2
votes
1 answer

How to end-to-end test notifications in Flutter?

I have a flutter app that uses flutter_local_notifications package to show notifications. Is it possible to have integration_test in form of end-to-end tests like this: notification is scheduled (e.g. 10 seconds in future), app is closed,…
2
votes
1 answer

is there any way to schedule multiple notifications at same time using flutter local notification

I use flutter local notification package to schedule notification in my application but it only schedule one notification at a time if i set two notification on different time then only one notification is displayed here is my code of scheduled…
2
votes
1 answer

Can't navigate to the specific page with notfification tap. Flutter Deeplinking Issue

//root dart file FirebaseMessaging.onBackgroundMessage(_backgroundMessageHandler); await NotificationService.instance.initializeNotifications(); Future _backgroundMessageHandler(RemoteMessage message) async { await…
2
votes
1 answer

Update ongoing notification with Flutter

Currently we are using the awesome notifications package to display a notification in our Flutter app. We want to constantly update the contents of this notification. Specifically, we want to display a timer within the notification. For now we…
2
votes
0 answers

Flutter: Awesome Notification Choose Sound from storage

I am using flutter awesome notification and I want user can choose custom sound from their storage. Is it possible to make it? Here is my code to initialize the awesome notification plugin. AwesomeNotifications().initialize( …
2
votes
0 answers

Flutter repeated weekly notification

Actually i want to show weekly notification in flutter, i don't find a way to i'm asking here :-) So in my app user can schedule timetable and got notification according to that. And user can schedule notifcation for all 7 days of week(monday,…
Sushant
  • 21
  • 1
2
votes
1 answer

I’m creating a birthday reminder app in flutter, I’ve done everything except setting schedule notification on the specific date of birth Enter by user

I’ve implemented these things Databas. showing the records in list view There’s a add button to add user name, date of birth Local notification as well Problem is ,how to setup notification reminder on the specific date enter by the…
2
votes
0 answers

Flutter Local Notifications onSelectNotification Navigator not working if the app is already opened

I use a Navigator in onSelectNotification in Flutter Local Notifications, if the app is already running when I set the notification the Navigator works fine, if the app is closed and opened it via the notification it works fine too because I use…
2
votes
1 answer

How to execute background tasks in flutter while the application is closed?

I'm trying to schedule a background task in Flutter, firing a notification and updating a database row. I'm using: workmanager package to schedule tasks in the background. flutter_local_notifications to fire notifications. hive to persist…
1
vote
0 answers

what is the check duplicate classes error?

I just added the lib awesome_notifications_fcm and when compiling it for android getting this error, havent even implemented yet. Launching lib\main.dart on sdk gphone64 x86 64 in debug mode... FAILURE: Build failed with an exception. * What went…
1
vote
1 answer

Action Buttons not showing in notification when application is in background in real device, using awesome_notifications package in Flutter

I am using awesome_notifications package in my flutter application to show notifications and I am triggering my notifications using firebase_messaging , so whenever firebase cloud messaging is triggered I get notification on my device. The ISSUE I…