yubioath-flutter/lib/android/qr_scanner/qr_scanner_scan_status.dart
Adam Velebil 527d00d398
revamp UI
2022-08-05 10:40:36 +02:00

6 lines
285 B
Dart

/// 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 }