kaushalyap
kaushalyap

Reputation: 13657

Listening to incoming notifications Flutter

I am deciding whether to use Flutter for cross platform app. I have investigated in ways to implement other functionalities.

But I need one other feature to implement which needs listening to incoming notification from other app in background. (something like notification listener in Android)

While I was searching came across the issue here which may effect what I intend to implement.

Is there any way to achieve what I want in Flutter? I am willing to write plugins in native languages if its possible.

Upvotes: 1

Views: 2975

Answers (1)

flarkmarup
flarkmarup

Reputation: 5439

You can benefit from platform channels to write a plugin to utilise native code for each platforms. This medium post explains how to execute dart in the background and have example code for Android (Kotlin) and iOS (Objective-C).

However, according to this SO post you are not able to create an similar service like a NotificationListener for iOS.

Upvotes: 3

Related Questions