Skip to content

Latest commit

 

History

History
20 lines (15 loc) · 477 Bytes

README.md

File metadata and controls

20 lines (15 loc) · 477 Bytes

Flutter, Firebase Auth & Cloud Firestore example

Flutter Firebase example project.

Commands

# Generate codes
flutter packages pub run build_runner build --delete-conflicting-outputs
flutter packages pub run build_runner watch

# Install coverage tool
brew install lcov

# Test Coverage
flutter test --coverage
lcov --remove coverage/lcov.info 'lib/**/*.g.dart' -o coverage/lcov.info
genhtml coverage/lcov.info -o coverage/html
open coverage/html/index.html