by @kodeazy

flutter How to create a sample project and run?

Home » flutter » flutter How to create a sample project and run?
  • In flutter to create a sample project execute th below command in command prompt.

    flutter create my_first_project
  • Now the sample project was created with name my_first_project.
  • After executing the command go to my_first_project folder using below command

    cd my_first_project
  • now run the flutter application using below command

    flutter run
  • To understand how to create Hello world application in flutter click here