This project was initially developed with React, in a event called Next Level Week, which is a intense week of free content with an amazing quality, then I've cloned it using Flutter with the same design that was first purposed, you can check it here.
Feature-wise, this is the same application, but now is fully tested and uses the combination of Material 3 and Bloc.
Before runing:
flutter pub getThis project contains 3 flavors:
- development
- staging
- production
To run the desired flavor either use the launch configuration in VSCode/Android Studio or use the following commands:
flutter run --flavor development --target lib/main_development.dartflutter run --flavor staging --target lib/main_staging.dartflutter run --flavor production --target lib/main_production.dartTo run all unit and widget tests use the following command:
$ flutter test --coverage --test-randomize-ordering-seed randomTo view the generated coverage report you can use lcov.
# Generate Coverage Report
$ genhtml coverage/lcov.info -o coverage/
# Open Coverage Report
$ open coverage/index.html
