如何在local_auth flutter中禁用人脸Id扫描。只有指纹的athinated。或者我可以在原生Android端做
在android设置中,如果注册了FaceID和指纹默认是勾选FaceID,但我不会只使用指纹
In Authentication Option you will get all option please check once
authenticated = await auth.authenticate(
localizedReason:
'Scan your fingerprint (or face or whatever) to authenticate',
options: const AuthenticationOptions(
biometricOnly: false,
),
);