Member-only story
ADHD Way To Master Flutter Project DevOps
Part of my success of getting control of my ADHD is my diet approach to ADHD. The other part of my success of controlling my ADHD is how I organize and automate everything. In a typical flutter app project, you have 5,000 to 50,000 things to complete and keep track of.
Let me show the ADHD way to automate and organize everything. Keep in mind that each book that I am writing, I am actually building one full-app and several mini-apps to highlight different subject areas using this automation and organization system.
Flutter SDK Accessories
There are some accessories to the Flutter SDK that will make it easier to produce quality dart code reliably, such as:
Dart Code Metrics
Lints
LCOV
PubViz
Junit Test Reports
DCDG-PLantUML
Derry
Let me show a better way to approach Dart Code Metrics first.
Dart Code Metrics Lints
The Dart programming language is a mixed computer language, mixing both OOP and FP together. While we are using composing for some things in Flutter, such as reactive stream events, we still have to use some OOP with imperative…