Flutter
Just a repo that stores frequently used commands from flutter
🚧 Development
Check flutter health
This command will check the status of installed Flutter.
Check flutter health (w/ detail info)
This command will check the status of installed Flutter with extra detail message.
Start flutter project
This command will run Flutter app.
Start flutter project (w/ detail info)
This command will run Flutter app with extra detail message. By using this command, most of the time you can view more detailed error message during the development process.
Release app to production build
This command will compile your Flutter app into release mode. Usually you will run this when you want to know how your apps work without development mode before deploying it to App Store or Google Playstore.
Clean build
This command will clean your Flutter project cache. Usually you are gonna run this when your Flutter app is not working correctly. Once you run this command, your IDE should have bunch of errors, because everything is deleted. But this can be fixed once you start your project again.
Run build runner
This command will generate files using Dart code.
Clear build runner conflicts
This command will remove all conflicts from previous build data.
📦 Packages & Dependencies
Install package
Uninstall package
Last updated
Was this helpful?