Iam creating a flutter desktop app ,how to add windows (desktop) device to android studio virtual devices as in the image below
Asked
Active
Viewed 502 times
1 Answers
1
The device list is filtered to what platforms you can build the currently open project for, so for Windows to show up in your device list you need:
- Desktop support enabled in the Flutter tool.
- A
windows
runner set up for the project you want to build.

smorgan
- 20,228
- 3
- 47
- 55
-
I ran it with command `flutter run -d windows` throwgh the terminal ,but it didnt appear in the devices list ! – ADev Feb 21 '20 at 20:00