🌝

Flutter Command

Posted at — Dec 07, 2020
#flutter

Configration about flutter.

Config Flutter Environment

Installation Guide

Convert FlutterApp to FlutterWeb

1
2
3
4
5
6
7
8
9
#download web sdk
flutter channel beta
flutter upgrade
flutter config --enable-web
flutter devices

#then type in following words on project terminal
#and the web contents will be builded on build/web/
flutter build web

Cretae flutter project by commands

1
2
3
4
5
flutter create --no-overwrite $PROJECT
cd $PROJECT
flutter analyze
flutter test
flutter run