Home > Net >  How to make app in background like chat head of messenger in flutter
How to make app in background like chat head of messenger in flutter

Time:02-23

How to make app in background like chat head of messenger when user but it in background and click on this bubble to open the app again . I'm trying to use floaty_head package but it doesn't work .

CodePudding user response:

I am assuming that you are referring to the Android Bubbles API documented here. If that's the case, at the time of this writing I don't believe there are ready to use 3rd party packages on pub.dev that allow you to achieve this. Your best option at the moment is to write that code natively yourself and integrate it with your Flutter application using channels.

  • Related