Skip to content

Instantly share code, notes, and snippets.

@donwardpeng
Last active July 29, 2019 01:52
Show Gist options
  • Save donwardpeng/23aeb28a4fe1d3386da218da98f5e7da to your computer and use it in GitHub Desktop.
Save donwardpeng/23aeb28a4fe1d3386da218da98f5e7da to your computer and use it in GitHub Desktop.
Common Flutter and Dart Commands

Common Flutter and Dart Commands

Flutter Web Specific Commands

Rebuild all json_serializable generated files:

flutter pub run build_runner build --delete-conflicting-outputs

Start the Flutter Web Dev Server

webdev serve --auto restart

Flutter Mobile Specific Commands

Build release apk file for Android

flutter build apk --target-platform android-arm,android-arm64 --split-per-abi

Dart Specific Commands

Get Dart Dependencies (generates the User/Dward1/.pub_cache directory)

pub get
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment