Home > OS >  Android studio for flutter
Android studio for flutter

Time:12-24

I was currently using android studio for developing android apps and now I want to work with flutter in the already installed android studio. How can I switch from android to flutter? Do I have to uninstall and reinstall android studio to work with flutter?

CodePudding user response:

  1. download flutter sdk
  2. set flutter environment path
  3. on Android Studio, install flutter plugin, and dart plugin
  4. run command flutter doctor to make sure your flutter environment work.

CodePudding user response:

You have to install flutter and dart sdk from official website and set the path. In android studio you have to install two plugins first is Flutter and second is dart. (Open plugin preferences (File > Settings > Plugins). Select Marketplace, select the Flutter plugin and click Install.) once you have installed both plugins restart your android studio.

  • Related