Home > Mobile >  Can't load develop for windows option in android studio with flutter
Can't load develop for windows option in android studio with flutter

Time:02-11

I have downloaded the newest sdk of flutter, (2.10) and connected it to android studio. However, when creating a new flutter project android studio doesn't offer me the develop for windows option as a clickable option. What do?

CodePudding user response:

Hi there you need to add the config to flutter using the following command from your terminal.

flutter config --enable-windows-desktop

flutter config --enable-"platform"-desktop #this can be used for linux etc as well.

Once you have done this restart Android Studio.

https://docs.flutter.dev/desktop

  • Related