Flutter frequently used command lines

2022/09/14 23:14

This is some commands I often use in development. Hope it will help you.

build apk:
flutter build apk --release
flutter build appbundle
analyze package size:
flutter build apk --analyze-size
flutter build appbundle --analyze-size
flutter build ios --analyze-size
flutter build linux --analyze-size
flutter build macos --analyze-size
flutter build windows --analyze-size

 

Leave a Reply

Back to top