cake_wallet/lib/entities/biometric_auth.dart

33 lines
1 KiB
Dart
Raw Normal View History

import 'package:flutter/services.dart';
import 'package:flutter_local_authentication/flutter_local_authentication.dart';
class BiometricAuth {
final _flutterLocalAuthenticationPlugin = FlutterLocalAuthentication();
Future<bool> isAuthenticated() async {
try {
final authenticated = await _flutterLocalAuthenticationPlugin.authenticate();
return authenticated;
2020-09-10 14:51:59 +00:00
} on PlatformException catch (e) {
print(e);
}
return false;
}
2020-09-10 14:51:59 +00:00
Future<bool> canCheckBiometrics() async {
bool canAuthenticate;
2020-09-10 14:51:59 +00:00
try {
canAuthenticate = await _flutterLocalAuthenticationPlugin.canAuthenticate();
// Setup TouchID Allowable Reuse duration
// It works only in iOS and macOS, but it's safe to call it even on other platforms.
await _flutterLocalAuthenticationPlugin.setTouchIDAuthenticationAllowableReuseDuration(30);
} on Exception catch (error) {
print("Exception checking support. $error");
canAuthenticate = false;
2020-09-10 14:51:59 +00:00
}
return canAuthenticate;
2020-09-10 14:51:59 +00:00
}
}