Questions tagged [flutter-notification]

117 questions
1
vote
1 answer

Notification on flutter

I'm trying to learn flutter, but I can't manage to do this. I'm doing a schedule about school that prints all your lessons etc. I want that when a lesson is about to start, a notification will be sent 5 minutes before that the lesson (or something)…
Skerdi Velo
  • 121
  • 2
  • 13
1
vote
2 answers

How to remove (or set) local notification badge in app icons - Flutter

I want to remove or set the notification icon of my application, what should I do? I use the flutter_local_notifications package, and there is no property for removing or customizing the badge icon of the application. Also, in default, it seems like…
alperefesahin
  • 604
  • 6
  • 22
1
vote
1 answer

flutter local notification does not send notifications

FlutterLocalNotificationsPlugin flutterLocalNotificationsPlugin = FlutterLocalNotificationsPlugin(); // initialization of flutter local notifications plugin var initializationSettingsAndroid = …
1
vote
0 answers

Flutter: delete calendar events in Gmail

I'm creating some local notifications for my users to remain them different events. I achieved this by using https://pub.dev/packages/flutter_local_notifications. These notifications are scheduled and can be removed easily. I was thinking in other…
Dani
  • 3,128
  • 2
  • 43
  • 91
1
vote
0 answers

Flutter when action is set on notification, the app calls BackgroundMethod even if the app is in foreground

I have a flutter app that uses local notifications https://pub.dev/packages/flutter_local_notifications. I have a notification that is set to a certain date : await flutterLocalNotificationsPlugin.initialize(initializationSettings, …
1
vote
1 answer

How to fix this "Unable to publish push notification; err = Published push notification to not push-enabled channel" with ably

I'm trying to use push notifications with ably in a flutter app but I'm getting this error please help me solve it
1
vote
1 answer

Flutter Notification dont show

I have a problem with notifications that are not displayed. I am trying to get a notification within a certain time, but I have no idea what I am doing wrong.There are no errors or interrupts, the application is working properly, but the messages…
1
vote
0 answers

Flutter local notification to execute code before showing itself

In flutter application I want to show local notification with progress of some task. Progress of the task is stored locally (shared_preferences or sqflite). Is it possible in flutter to schedule a local notification to be shown (executed) exactly at…
Maciej Pszczolinski
  • 1,623
  • 1
  • 19
  • 38
1
vote
1 answer

Flutter silent push notifications - does such thing exists?

I want to trigger some code of my app on a daily basis. Is there something similar to silent push notifications on Flutter, that will trigger part of the code, event when app is closed? I already reviewed package flutter_local_notifications but…
Maciej Pszczolinski
  • 1,623
  • 1
  • 19
  • 38
1
vote
0 answers

APNS device token not set before retrieving FCM Token for Sender ID 'xxxxxxxxxx'. Notifications to this FCM Token will not be delivered over APNS

APNS device token not set before retrieving FCM Token for Sender ID 'xxxxxxxxxx'. Notifications to this FCM Token will not be delivered over APNS. Be sure to re-retrieve the FCM token once the APNS device token is set. I have added the key and auth…
1
vote
1 answer

How can solve this issues? ArgumentError (Invalid argument(s): iOS settings must be set when targeting iOS platform.)

How can solve this issues? ArgumentError (Invalid argument(s): iOS settings must be set when targeting iOS platform.) I had added the Notification, but when I running the iOS simulator I get this error How can solve this issues? ArgumentError…
Stanley
  • 311
  • 5
  • 15
1
vote
1 answer

Cannot receive the notificaion from firebase when I use flutter to developing on iOS

Cannot receive the notificaion from firebase when I use flutter to developing on iOS I'd granted permission and used postman to test. First, I'd get token Restarted application in 516ms. flutter: User granted permission flutter: This token is…
1
vote
1 answer

How to modify UI in notification flutter?

I'm making a music player application by following this tutorial using packages from audio_service: ^0.18.4 just_audio: ^0.9.20 the music player app runs smoothly, but I want to add a button in the notification view section, is there a way to do…
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
0 answers

Why Flutter Firebase Messaging on Message not working always?

I'm using Flutter Firebase Messaging with Flutter Local Notification I followed all steps in the document example, I have a problem which is: the OnMessage listener has not fired always, sometimes I got Message BroadCast Received but on Message…