ente/lib/utils/auth_util.dart

11 lines
338 B
Dart
Raw Normal View History

2021-03-19 13:27:39 +00:00
import 'package:local_auth/local_auth.dart';
2021-03-21 08:32:10 +00:00
import 'package:logging/logging.dart';
2021-03-19 13:27:39 +00:00
Future<bool> requestAuthentication(String reason) async {
2021-03-21 08:32:10 +00:00
Logger("AuthUtil").info("Requesting authentication");
await LocalAuthentication().stopAuthentication();
2021-03-19 13:27:39 +00:00
return await LocalAuthentication().authenticate(
localizedReason: reason,
);
2021-03-19 13:27:39 +00:00
}