Random color generator
This is a simple Flutter application created as part of a test task. The app displays the text "Hello there" in the center of the screen and changes the background color to a randomly generated RGB color when the user taps anywhere on the screen.
This project follows Clean Architecture principles with a clear separation of concerns between layers:
lib/
├── domain/
├── data/
├── presentation/
This task may not be the best example because we dont have actual server then we would have inside of data/ 2 folders called implementation and repository. I like to keep my code clean and formatted all the time and without dead code, i only leave comments when method isnt understandable by its name or if its complicated to understand.