push icon indicating copy to clipboard operation
push copied to clipboard

Push notifications in Flutter without firebase_messaging.

Results 34 push issues
Sort by recently updated
recently updated
newest added

Steps: 1 - create an empty flutter project (3.16.9) 2 - flutter pub add firebase_core firebase_messaging push 3 - configure android build.gradle 4 - add basic subscription for push message...

Hallo, I implemented your plugin and all the needed code and callbacks to my project. All callbacks works for me. I received all notifications in foreground and background. My Problem...

I made another breaking change to make things consistent (all callback API, no streams). ~~Should I make that v3 or v2.1 😅️?~~ I'll make it v3. Fixes https://github.com/ben-xD/push/issues/46 ## TODOs...

This is limited to example app, since it was not including the data when creating a local notification with Flutter Local Notifications package.

Thanks for your package! I used flutter_apns and have tried to migrate to Push. It works fine, but I got one annoying issue. I use uni_links with this code to...

```bash xcrun simctl push booted com.app.app push.json ``` ```json { "aps": { "alert": { "title": "Test", "body": "hello message" } } } ``` ```dart onInit(){ Push.instance.addOnMessage((message) { log('RemoteMessage received while...

Could you add unregisterForRemoteNotifications for iOS and deleteToken for FCM/Android?

IOS PUSH NOTIFICATION DOESN'T WORK IN FOREGROUND!!!!!!!!!!! PUSH.INSTANCE.ONMESSAGE IS NOT TRIGGERED!!!!

Have an issue in iOS app background state and FCM Push Notification. Steps to reproduce: - The backend sends FCM Push Notification. - iOS receives Push Notifications. Alert appears. -...