Flutter Desktop Multi Monitors

Issue

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.

Answered By – smorgan

Answer Checked By – Candace Johnson (FlutterFixes Volunteer)

Leave a Reply

Your email address will not be published. Required fields are marked *