https://github.com/atereshkov/flutter-eureka-2023
Reacquainting with modern Flutter & BLoC. Diving back into the Flutter ecosystem and discovering the latest approaches and best practices.
https://github.com/atereshkov/flutter-eureka-2023
bloc cubit dart flutter
Last synced: 3 months ago
JSON representation
Reacquainting with modern Flutter & BLoC. Diving back into the Flutter ecosystem and discovering the latest approaches and best practices.
- Host: GitHub
- URL: https://github.com/atereshkov/flutter-eureka-2023
- Owner: atereshkov
- License: mit
- Created: 2023-11-04T16:46:24.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2023-11-05T19:30:16.000Z (almost 2 years ago)
- Last Synced: 2025-03-24T15:13:00.915Z (7 months ago)
- Topics: bloc, cubit, dart, flutter
- Language: HTML
- Homepage:
- Size: 305 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# flutter-eureka-2023
Reacquainting with modern Flutter & BLoC. Diving back into the Flutter ecosystem and discovering the latest approaches and best practices.## Tests
### Run tests with coverage
Run unit tests:
```flutter test --coverage```
Run integration tests:
```flutter test test_integration```
### Generate coversage report
Install lcov first, e.g. using brew: `brew install lcov`.
```genhtml coverage/lcov.info -o coverage/html```