1
0
mirror of https://github.com/kamranahmedse/developer-roadmap.git synced 2025-08-30 20:49:49 +02:00

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>
This commit is contained in:
Felipe Carvalho
2022-12-05 10:05:15 -03:00
committed by GitHub
parent db65e65f26
commit 7df11ac8ba

View File

@@ -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.