Question Detail

How to setup flutter and create a fresh project in visual studio code?

4 years ago Views 1097 Visit Post Reply

I am new in Flutter technology, Please elaborate, how to start development in the flutter?

I have followed "GET STARTED DOC" for Flutter but not getting the idea of how to create a new app for IOs and Android using flutter?

How to run an application in a real Android Device?
How to setup flutter and create a fresh project in visual studio code


Thread Reply

Hemant Sharma

- 4 years ago

Creating a Flutter framework app from scratch

  • Go to your location by CMD ( Windows ) or Terminal (MacOs / Linux) where you want to create your Project
  • Run command to create fresh flutter project flutter create APP_NAME. App name should be in small letters otherwise it will give you error
  • At your project location will create a folder Name by your project Name (That is your Project).
  • Go to in your project folder cd APP_NAME.
  • Here you succeed in your first working Flutter project from scratch.
  • Connect or run your Real / Emulator device to run flutter Hello World project 
  • Run your Hello World project by the run flutter run in your CMD or Terminal

Hemant Sharma

- 4 years ago

Creating a Flutter framework app from scratch

  • Go to your location by CMD ( Windows ) or Terminal (MacOs / Linux) where you want to create your Project
  • Run command to create fresh flutter project flutter create APP_NAME. App name should be in small letters otherwise it will give you error
  • At your project location will create a folder Name by your project Name (That is your Project).
  • Go to in your project folder cd APP_NAME.
  • Here you succeed in your first working Flutter project from scratch.
  • Connect or run your Real / Emulator device to run flutter Hello World project 
  • Run your Hello World project by the run flutter run in your CMD or Terminal