How to support push notification in safari on a flutter webapp - flutter

I have a flutter project which is running on iOS, Android and Web.
Now my challenge is to support push notification in Safari browser (webapp flutter).
I should be able to send custom payload in push notification.
I have gone though the below official documentation, but not getting how to pass custom payload with this approach and also there is NO CALLBACK defined to handle the push notification
https://developer.apple.com/library/archive/documentation/NetworkingInternet/Conceptual/NotificationProgrammingGuideForWebsites/PushNotifications/PushNotifications.html
Please help me out.

Related

Flutters Push Notifications without FCM or is it a must?

I'm trying out the push notifications for flutter apps, so I was wondering, is using FCM (Firebase Cloud Messaging) a must use for push notifications or not? Can I do this without FCM? NOTE:I tried using FCM and it works when the app is offline, in the background and foreground. I tried just the local push notifications with an alarm app and it only works while the app is in the background or foreground, not when the app is offline. I want to build a push notification system that sends data that works like this Some system -> My API -> My mobile App, can I work like that with a flutter app? Or do I need to go like this Some system -> My API -> FCM -> My mobile App. I know FCM is cross platform so is probably the best, but I just want to know my other options too.
Thanks in advance for your help and advice!
The OS shows push notifications, and it doesn't matter what kind of technology you're using to create the app. All you need is to get unique token and send it to the server, so it can send a notification to the phone. Thus, you need a service to do that for you. FCM is one of them. There are other options like OneSignal, Amazon AWS, Pusher and others.

Flutter:Has anyone use Iterable SDK with a flutter App for push notification

I have a flutter app and need to integrate Iterable SDK --https://support.iterable.com/hc/en-us/articles/360035018152 for Push Notification.
Has anyone completed this integration with Iterable/Futter and did you encounter any issues. I have firebase push working in my app
Thanks for the information

Flutter OneSignal push notification issue

I need to push notification from my WordPress blog to my flutter app using one signal plugin and it works fine to receive a notification when a new post added in my blog, So my problem is when i clicked on the notification in my Android phone it redirect me to post url, I need to open my app, not my site url.
please any can help me.

Ionic Push Plugin

Can anybody help me in understanding the ionic push plugin, I have followed the documentation but it does not have much information.
I am struggling to perform some basic setups like.
Push notification icon
Background push notification to a page in app
On demand prompt to user for enable/disable push notification and deviceToken management
Quickest solution for me was to implement the FCM plugin. I also looked over the docs and the FCM module just made it very simple and easy to understand.
fcm module gets the token, then registers this on my server. From there I have the npm firebase module to send push notifications to users.

Sending big picture style push notification from ionic dashboard

I am using phonegap-plugin-push to send push in my ionic 3 app.
Normal notifications are working fine. I want to send big picture style notification from ionic dashboard. How can I do it? Which payload should be used in dashboard?
Finally I found it. Push plugin has no check for payload. I added a check & it worked.