mirror of
https://github.com/Yubico/yubioath-flutter.git
synced 2024-11-23 00:57:26 +03:00
29 lines
908 B
Dart
29 lines
908 B
Dart
import 'package:flutter/material.dart';
|
|
import 'package:flutter_riverpod/flutter_riverpod.dart';
|
|
import 'package:yubico_authenticator/app/state.dart';
|
|
|
|
import 'qr_scanner_view.dart';
|
|
|
|
class AndroidQrScanner implements QrScanner {
|
|
final WithContext _withContext;
|
|
AndroidQrScanner(this._withContext);
|
|
|
|
@override
|
|
Future<String> scanQr([String? _]) async {
|
|
var scannedCode = await _withContext((context) async =>
|
|
await Navigator.of(context).push(PageRouteBuilder(
|
|
pageBuilder: (_, __, ___) => const QrScannerView(),
|
|
transitionDuration: const Duration(seconds: 0),
|
|
reverseTransitionDuration: const Duration(seconds: 0),
|
|
)));
|
|
if (scannedCode == null) {
|
|
throw Exception('Null value from QR scanner');
|
|
}
|
|
return scannedCode;
|
|
}
|
|
}
|
|
|
|
final androidQrScannerProvider = Provider<QrScanner?>(
|
|
(ref) => AndroidQrScanner(ref.watch(withContextProvider)),
|
|
);
|