Aman Agarwal
Aman Agarwal

Reputation: 115

How to get Nofication data of other apps on Flutter?

I am trying to make an app that can get the notification data of all notifications that appear on the phone. I tried using notifications package, but using this package I can only access the name of app which sent the Notification and the timestamp, and not the actual notification itself.

I have no issue if the app asks for permission.

Upvotes: 1

Views: 3219

Answers (2)

Aman Agarwal
Aman Agarwal

Reputation: 115

This feature was recently added to the GitHub repo of the Notification package. It has not yet been updated on the pub.dev website.

Depend on the GitHub repository of the package to use the packageMessage property.

Upvotes: 4

Erfan
Erfan

Reputation: 21

I want to read all notifications from other apps in the foreground and background and for it, I use this package, and when I combine this package with flutter_background_service for a working app in the background I face to error and crash my app.

Upvotes: 1

Related Questions