How to Create new Flutter Project in VSCODE EDITOR

Hi Guys, Welcome to Proto Coders Point. In this Flutter Article let’s Learn how to create a flutter project in VSCode.

Below are the requirement to create flutter project.

  1. VSCode IDE
  2. Dart SDK been downloaded and setuped.
  3. Flutter SDK been downloaded and setuped.

How to check Dart and Flutter are installed or no

Just Open Cmd prompt & enter below cmds.

dart --version

flutter --version

check if dart & flutter are instaled or not

If not setuped download it from below links

How to Download Dart SDK

How to Download Flutter SDK


How to create flutter project in vs code

Below are steps to create new flutter project in Visual Studio Code (IDE).

Step 1: Open VSCode & Install Dart & Flutter Extensions

In VsCode Editor, drawer at left you will find a extension page, search for dart & flutter extensions and install them both.

installing dart & flutter in vscode editor
dart & flutter extensions installed

Step 2: Creating flutter project in vscode editor

In vscode, Open command palette to do so, In menu bar > views > Command Palette or Ctrl _Shift + P.

Now Search for flutter project.

Then, here select Applcation.

generate a flutter application vscode

then, Now give name to your flutter_app

Now you need to just wait for it project creation process, it will just take 1 min or less.

then finally, our flutter project was successfully been create.

flutter project got successfully created in VSCode editor

Step 4: How to running flutter project on mobile device

Then, Once our flutter project is ready, To run it on physical device:

Connect the device through USB (make sure you have turned on USB Debugging Mode) or Wirelessly through TCP ID.

Run below cmd on VSCode Terminal to run flutter app :-

flutter run

cmd running flutter app in vscode
cmd running flutter app in vscode .JPG

App Running on my Mobile Device