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

36 lines
1.2 KiB
Dart
Raw Normal View History

2022-03-28 11:58:09 +03:00
import 'package:flutter/material.dart';
import 'package:flutter_riverpod/flutter_riverpod.dart';
import 'package:yubico_authenticator/app/state.dart';
import 'package:yubico_authenticator/cancellation_exception.dart';
import 'package:yubico_authenticator/theme.dart';
2022-03-28 11:58:09 +03:00
import 'qr_scanner_view.dart';
class AndroidQrScanner implements QrScanner {
final WithContext _withContext;
AndroidQrScanner(this._withContext);
2022-03-28 11:58:09 +03:00
@override
Future<String?> scanQr([String? _]) async {
var scannedCode = await _withContext(
(context) async => await Navigator.of(context).push(PageRouteBuilder(
pageBuilder: (_, __, ___) =>
Theme(data: AppTheme.darkTheme, child: const QrScannerView()),
transitionDuration: const Duration(seconds: 0),
reverseTransitionDuration: const Duration(seconds: 0),
)));
if (scannedCode == null) {
// user has cancelled the scan
throw CancellationException();
}
if (scannedCode == '') {
return null;
}
return scannedCode;
}
2022-03-28 11:58:09 +03:00
}
final androidQrScannerProvider = Provider<QrScanner?>(
(ref) => AndroidQrScanner(ref.watch(withContextProvider)),
2022-03-28 11:58:09 +03:00
);