Questions tagged [flutter-notification]

117 questions
0
votes
0 answers

Flutter app not receiving notifications in terminated state

I am using flutter local notification package to schedule periodic notification. When I run the app, notifications are received for foreground and background state of the app but when the app is in terminated state, the notifications are not…
0
votes
0 answers

How can i schedule notifications in flutter framework

I have a flutter app for windows desktop app ,I want to schedule notification for student exit date , I mean I want the app Give to user notification before exit date due ,I used flutter local notifications: ^14.0.0+1 package and test it on IOS and…
0
votes
1 answer

How to get APNS device token in flutter app without using Firebase?

I am trying to make a flutter app that uses APNS for iOS push notifications and I do not want to use firebase, as I am using AWS SNS in the backend to deliver the push notifications via APNS. I have the application Identifier set up and Keys…
0
votes
1 answer

Flutter One signal how to navigate to a screen on notification tap?

I want to navigate to a screen on notification tap, but I can't context in OneSignal.shared.setNotificationOpenedHandler, I tried using global navigator key as below. OneSignal.shared.setNotificationOpenedHandler( (final…
0
votes
0 answers

How to Show Some Widgets while app is Locked in flutter?

How to show lockscreen notification in flutter. I was tried several packages wakelock and system_alert_window but will work for me. Is there any packages or plugin was there for it. I need when my app is locked I want to show some widget…
0
votes
1 answer

How to display big image notification IOS

Future _notificationDetails({String url}) async { http.Response response = await http.get(Uri.parse(url)); AndroidNotificationDetails androidNotificationDetails = const AndroidNotificationDetails( …
0
votes
1 answer

AndroidManifest build error when using flutter_local_notification: Flutter

I am working on a Flutter Application where I want to use the flutter_local_notifications with Firebase Cloud Messaging. When I added the following code to my main.dart- @pragma('vm:entry-point') Future
0
votes
0 answers

notification don't pop up in flutter onesignal app

Hi I Have a problem with onesignal I am using API to send a notification when the user adds something in-app, everything is working perfectly but when he received a notification it doesn't pop up, after some research I found I have to add priority…
yousef
  • 1
  • 3
0
votes
1 answer

Local notification is not working for android version 12 and above in flutter

Plugin used: awesome_notification This is my code for creating the local notification. It is working fine up to android version 11, but after 12 version both the basic and schedule channel notification is not working.
0
votes
0 answers

How do you update the date and time in Flutter Local Notifications?

I am working on a Flutter Application that requires to send scheduled notifications. I was able to create the notification but can't find any documentation on how to update the time and date passed to the scheduled notification? A solution I thought…
0
votes
0 answers

FlutterJNI.loadLibrary called more than once

FlutterJNI.loadLibrary called more than once FlutterJNI.init called more than once Notification is received when the app is terminated. But when notification is clicked null check operator is used in the null value. But notification data is…
0
votes
0 answers

how set flutter LocalNotification.schedule alarm every 2weeks?

example during 3 weeks. 1 week Monday - alarm on 2 weeks Monday - alarm no 3 weeks Monday - alarm on how can I do it? I try DateTimeComponents.dateAndTime, but it's only run for one day. and I try DateTimeComponents.dayOfMonthAndTime, but it's only…
0
votes
1 answer

Flutter Firebase notification not working when app is signed and is closed

I am developing an app in Flutter which uses firebase notifications. When app is opened then i showed a popup message within app. and when app is killed then i recieved the notification…
0
votes
1 answer

Flutter local notification from a List

i m using flutter local notifications, everything is working fine, but i m trying to display random string from a list in the notifications, the only problem is the Notification showing the same string over and over again... i want to display daily…
Marian
  • 39
  • 3
0
votes
0 answers

How can I use phone notification and custom sound in my awsome notification in flutter

Hello Guys I am working on my flutter project Where I am using awesome notification. I want to do two things. The device notification sound will be the sound source. The custom sound provided by me will be the sound source. I don't know How to…