Skip to content

Latest commit

 

History

History
57 lines (37 loc) · 835 Bytes

GETTING_STARTED.md

File metadata and controls

57 lines (37 loc) · 835 Bytes

Dev starter kit

Install Dart of Flutter sdk

This project requires Dart and/or Flutter sdk in order to run.

For Dart only purpose you can install Dart sdk only.

Install Dart 🎯

https://dart.dev/get-dart

For Flutter purpose you can install Flutter sdk.

Install Flutter 🦋

https://flutter.dev/docs/get-started/install

Install dependencies

First run pub get to install dependencies.

flutter pub get

Run tests

dart test

Check coverage

Activate coverage package

pub global activate coverage

Collect coverage

dart run coverage:test_with_coverage

Install lcov

sudo apt install lcov

Generate report

genhtml -o coverage/html coverage/lcov.info