Flutter中只有指纹

时间:2019-11-19 17:34:57

标签: flutter fingerprint localauthentication

我正在使用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);
  }
}

0 个答案:

没有答案