Flutter plugin for notification read & reply
Reflex
Flutter plugin for notification read & reply.
Compatibility
✅ Android
❌ iOS (active issue: iOS support for reflex)
Show some ❤️ and ⭐ the repo
Why use Reflex?
Reflex Plugin is known for:
Reflex |
---|
Fast, performant & compatible |
Free & Open-source |
Production ready |
Make App Reactive |
Features
All the features listed below can be performed at the runtime.
✅ Get Notification Stream
✅ Read Notification
✅ Reply From Notification
✅ Auto Reply
Quick Start
Step 1: Include plugin to your project
dependencies:
reflex: <latest version>
Run pub get and get packages.
Step 2: Add Service in AndroidManifest.xml
Add the following service inside the application
tag of AndroidManifest.xml
.
...
<service
android:label="notifications"
android:name="com.devsonflutter.reflex.notification.NotificationListener"
android:permission="android.permission.BIND_NOTIFICATION_LISTENER_SERVICE">
<intent-filter>
<action android:name="android.service.notification.NotificationListenerService" />
</intent-filter>
</service>
</application>
Step 3
Project Created & Maintained By
Divyanshu Shekhar
Subham Praharaj
Contributions
Contributions are welcomed!
If you feel that a hook is missing, feel free to open a pull-request.
For a custom-hook to be merged, you will need to do the following:
-
Describe the use-case.
-
Open an issue explaining why we need this hook, how to use it, …
This is important as a hook will not get merged if the hook doens’t appeal to
a large number of people. -
If your hook is rejected, don’t worry! A rejection doesn’t mean that it won’t
be merged later in the future if more people shows an interest in it.
In the mean-time, feel free to publish your hook as a package on https://pub.dev. -
A hook will not be merged unles fully tested, to avoid breaking it inadvertendly in the future.