mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-12-23 03:59:23 +00:00
c78662fbfe
* replace all print statements with printV * restore backup error message * missing print statements, error fixes * Update cw_core/lib/utils/print_verbose.dart [skip ci] * Update cw_core/lib/utils/print_verbose.dart [skip ci] * CW-846: Correctly display balance (#1848) * Correctly display balance even with frozen coins * remove package= from AndroidMainfest.xml * update namespace * print -> printV --------- Co-authored-by: Omar Hatem <omarh.ismail1@gmail.com>
30 lines
No EOL
902 B
Dart
30 lines
No EOL
902 B
Dart
import 'package:cw_core/utils/print_verbose.dart';
|
|
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;
|
|
} catch (e) {
|
|
printV(e);
|
|
}
|
|
return false;
|
|
}
|
|
|
|
Future<bool> canCheckBiometrics() async {
|
|
bool canAuthenticate;
|
|
try {
|
|
canAuthenticate = await _flutterLocalAuthenticationPlugin.canAuthenticate();
|
|
await _flutterLocalAuthenticationPlugin.setTouchIDAuthenticationAllowableReuseDuration(0);
|
|
} catch (error) {
|
|
printV("Exception checking support. $error");
|
|
canAuthenticate = false;
|
|
}
|
|
|
|
return canAuthenticate;
|
|
}
|
|
} |