Code Style
The code should adhere to the Dart code style with a maximum line length of 80 characters. Moreover, code should fulfill all LINT rules set in analysis_options.yaml. Most IDEs, such as Android Studios, automatically provide warnings if certain rules are violated.
Auto-format your code using the following command inside the project:
dart format .
To get an automatic overview of all code style related issues, use:
flutter analyze
Some issues can be fixed automatically. To do so, use:
dart fix --apply
Moreover, this code must follow architectural concepts described in base architecture reference. All logical elements must provide unit tests.
Last modified: 14 December 2025