我正在使用Flutter和local_auth模块实现对我的应用程序的指纹访问。但是它也使用面部识别,并且取消按钮在指纹传感器(Galaxy S10)上。
如何仅使用指纹而不使用flutter和local_auth的face-id?
我正在使用中型示例。
这是我的代码。
if (_isProtectionEnabled) {
try {
isAuthenticated = await _auth.authenticateWithBiometrics(
localizedReason: 'Fingerprint reader',
useErrorDialogs: true,
stickyAuth: true
);
} on PlatformException catch (e) {
print(e);
}
}