September 2019
Beginner
512 pages
12h 52m
English
It's time to start getting our hands dirty with some code. With the Flutter development environment configured, we can start using Flutter commands. The typical way to start a Flutter project is to run the following command:
flutter create <output_directory>
Here, output_directory will be also the Flutter project name if you do not specify it as an argument.
By running the preceding command, the folder with the provided name will be generated with a sample Flutter project in it. We will analyze the project in few moments. First, it is good to know that there are some useful options to manipulate the resulting project from the flutter create command. The main ones are as follows:
Read now
Unlock full access