Reputation: 33
Flutter is not running on my Android Studio correct, the emulator does not open the Standart beginning App. I believe it is because of some internal mixed up. I reinstalled everything without success. Right now when I run flutter doctor this is shown: flutter doctor
Can I put the plugins manually in some Folder? Because opening Android Studio and just downloading the plugin does not change anything. Although I can now create flutter Projects and come as far as writing the code but not seeing the app. Any Response is helpfull!
Upvotes: 1
Views: 5293
Reputation: 621
Your flutter doctor clearly shows that the correct plugins(Dart and Flutter) are not installed. To install the plugins just follow the steps:
Upvotes: 1
Reputation: 1405
Based on the Flutter doctor output, your android studio is missing Flutter and Dart Plugins. to install them,
Open Android Studio and open settings and go to plugins and search for Flutter. install it and the Dart plugin. then restart the android studio
Upvotes: 0