Home > OS >  Migrate from android studio to vscode
Migrate from android studio to vscode

Time:06-27

I’ve played around with Visual Studio Code a few times, Its light weight and there’s a clean interface. Android Studio heavier, and compicated.How can i move flutter project to vscode

CodePudding user response:

Updating the extension

  1. Click the Extensions button in the Side Bar.
  2. If the Flutter extension is shown with an available update, click the update button and then the reload button.
  3. Restart VS Code.

Opening a project from existing source code

  1. Click File > Open from the main IDE window.
  2. Browse to the directory holding your existing Flutter source code files.
  3. Click Open.

Run app

  • Click Run > Start Without Debugging if you want to run app without breakpoints

  • Click Run > Start Without Debugging if you want to run app with breakpoints

  • Related