Hikmet Mikayilov
Hikmet Mikayilov

Reputation: 11

Don't check face Id scan in local_auth package flutter

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

Upvotes: 1

Views: 855

Answers (1)

Mihir patel
Mihir patel

Reputation: 159

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

Upvotes: 0

Related Questions