All technological notes.
# replaces your current version of Flutter with the stable version
flutter channel stable
# update the Flutter SDK
flutter upgrade
# List all connected devices.
flutter devices
# optional
# Enable web app
flutter config --enable-web

| Command | Description |
|---|---|
flutter channel |
Current channel |
flutter channel <channel_name> |
change the channel |
master
dev (The dev channel was retired as of Flutter 2.8)
beta
stable
flutter create <project_name>


cd <project_name>
flutter run -d chrome

