Ionic Push Plugin - ionic-framework

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.

Related

Implement push notifications in Flutter

How to implement notification system like WhatsApp even when the app is closed. I want to get the notifications whenever the device is connected with the internet again
Please help me with the problem using firebase push notifications solution
Check out the FlutterFire documentation : https://firebase.flutter.dev/docs/messaging/notifications

How to support push notification in safari on a flutter webapp

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.

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.

Trusted Web Activities and Push Notifications Without User Opt-In

I'm currently working on publishing my PWA to Play Store; and stuck with Notifications. My TWA makes use of Firebase Push Notifications for Web - and they work fine. The only issue is that user must opt-in to the notifications when using PWA.
However, I'd like to enable notifications automatically whenever user downloads my TWA app from Play Store; and I couldn't find any relevant section in Google's TWA tutorials.
I have zero knowledge of Android development but I'm following tutorials by Google and got the TWA working on my mobile, minus the push notifications.
Can someone point me in the right direction?

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.