Don't check face Id scan in local_auth package flutter

582 Views Asked by At

How to disable face Id scan in local_auth flutter for Android. Athenticate with only fingerprint. Or can i do it on native Android side

On android settings if registered FaceID and Fingerprint by default it's check faceid but i won't use only fingerprint

1

There are 1 best solutions below

1
On
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,
      ),
    );