Installation and Configuration
Installation
For this part, please have a look at Flutter Official Website.
Configuration for web support
For now, to have the web support, we need to change to dev channel with the following command:
1 | flutter channel dev |
Then we need to enable the web support:
1 | flutter config --enable-web |
The last step is going to the project directory and apply those changes to our existing project:
1 | cd <into project directory> |
If you don’t have any project, using
1 | flutter create <project name> |