flutterflutter-webflutter-desktopflutter-windowsflutter-devtools

Flutter Desktop Multi Monitors


On Flutter desktop , I want to use multi monitors. Like when application started , I will see all monitors and click one of them ,then application will start the monitor that I selected. How can I do this?


Solution

  • Flutter currently has no built-in functionally to interact with monitors or windows; you would need to use a plugin. window_size has the ability to list all of the individual screens and their coordinates and sizes, as well as to reposition the window containing your Flutter application.