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:
- --org: This can be used to change the owner organization of the project. If you already know Android or iOS development, this is the reverse domain name, and is used to identify...