Open Android Studio
Go to File > Settings
(or Android Studio > Preferences
on macOS)
Navigate to:
Plugins > Marketplace
Search for Flutter
Click Install (this will also install the Dart plugin)
Restart Android Studio when prompted
If Flutter is already installed but not working:
Go to File > New > Project
Check if there’s a “Flutter” option in the list
If not, try restarting Android Studio again or re-installing the plugin
Go to Plugins > Installed
Uninstall Flutter and Dart
Restart Android Studio
Reinstall both from the Marketplace
Restart Android Studio again
As a temporary workaround, you can create a project via terminal:
bash
CopyEdit
flutter create my_app
cd my_app
flutter run
Then, open the my_app
folder in Android Studio.