A personal guide to do Flutter better.
- Software Design Pattern
- BLOC
- MVP
- MVVM
- MVC
- Design Guideline
- User Experience
- Native Coding for custom work
- CI/CD
- flutter build apk --obfuscate --split-debug-info=some_parent_directory/some_child_directory
- Remove unused code
- Minimise plugins
- Compress pictures and Videos
- flutter build apk --analyse-size
- Don't rebuild whole UI, user stateful builder
- Split into smaller widgets.
- Use Isolates
- Use effects onyl when necessary.
##Links