sbt_auth_dart 0.2.7
sbt_auth_dart: ^0.2.7 copied to clipboard
SBTAuth flutter sdk
Sbt Auth Dart #
SBTAuth SDK for flutter.
Setup #
iOS #
Android #
Add intent-filter inside activity
<activity ...>
<intent-filter android:autoVerify="true">
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data android:scheme="sbtauth" />
</intent-filter>
</activity>
Get started #
Running Tests 🧪 #
For first time users, install the very_good_cli:
dart pub global activate very_good_cli
To run all unit tests:
very_good test --coverage
To 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