yubioath-flutter/lib/android/qr_scanner/qr_scanner_scan_status.dart

6 lines
285 B
Dart
Raw Normal View History

2022-08-05 11:40:36 +03:00
/// Status of the scanning process
/// scanning - showing preview and scanning it for finding credential QR code
/// error - a QR code has been found but is not a credential
/// success - a QR code has been found and is a usable credential
enum ScanStatus { scanning, error, success }