Home > Mobile >  How to launch app in floating mode in flutter?
How to launch app in floating mode in flutter?

Time:01-30

How can I programmatically launch my flutter app in a popup window as shown in the picture. In this mode, interactivity should be preserved, the entire program is active, and not just 1 widget. Android only.screenshot of floating window

CodePudding user response:

Have you tried using the flutter_android_pip package ?
It doesn't support null safety, which could cause some problems. It also only supports Android, but that doesn't seem to be a problem according to what you asked.

CodePudding user response:

I found the best library to solve my problem. This is exactly what I was looking for. The library is used to launch the application in a popup window with all the interactivity. android_window

  •  Tags:  
  • Related