Add instructions for VS Code for flutter (#2938)

* Update a setup from Vs Code for Flutter.

* Update content/roadmaps/117-flutter/content/101-setup-development-environment/101-ides/100-vs-code.md

Co-authored-by: Kamran Ahmed <kamranahmed.se@gmail.com>
pull/3062/head
Felipe Carvalho 2 years ago committed by GitHub
parent db65e65f26
commit 7df11ac8ba
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 17
      content/roadmaps/117-flutter/content/101-setup-development-environment/101-ides/100-vs-code.md

@ -1 +1,16 @@
# Vs code
# VS Code
To use VS Code for Flutter development, you must install the Flutter and Dart plugins for VS Code. These plugins support Flutter-specific features such as syntax highlighting, debugging, and hot reloading.
Here are the steps to set up VS Code for Flutter development:
* Install VS Code from the official website: https://code.visualstudio.com/
* Open VS Code and click the Extensions icon on the left-hand side of the window.
* In the search box, type "Flutter" and press Enter. This will display a list of Flutter-related plugins.
* Install the "Flutter" and "Dart" plugins by clicking the Install button next to each one.
* Once the plugins are installed, you will need to restart VS Code for the changes to take effect.
* To create a new Flutter project, click the File menu, then select New > New Project. This will open the New Project dialog box.
* Select the Flutter application template, enter the project's name and location and click Create. This will create a new Flutter project in the specified location.
* To run the project, open the command palette (Ctrl + Shift + P on Windows or Cmd + Shift + P on Mac) and type "flutter run". This will run the project on the default emulator or device.
That's it! You should now be able to use VS Code for Flutter development.

Loading…
Cancel
Save