Windows option not enabled when creating new Flutter Project for Windows Development

Viewed 277

I am trying to create a new Flutter Project for Windows Development but I am unable to check the Windows check box in the Platforms section of Android Studio. I am using the Latest Flutter SDK (Stable) and Visual Studio (2022 Community) is also installed. Please help me find what is missing.

Issue:

enter image description here

Flutter Doctor:

enter image description here

1 Answers

You can run below command to enable windows.

flutter config --enable-windows-desktop
Related