How to use the expo-local-authentication.AuthenticationType function in expo-local-authentication

To help you get started, we’ve selected a few expo-local-authentication examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github expo / expo / apps / native-component-list / src / screens / LocalAuthenticationScreen.tsx View on Github external
.map(type => {
        switch (type) {
          case LocalAuthentication.AuthenticationType.FINGERPRINT:
            return 'FINGERPRINT';
          case LocalAuthentication.AuthenticationType.FACIAL_RECOGNITION:
            return 'FACIAL_RECOGNITION';
          default:
            throw new Error(`Unrecognised authentication type returned: '${type}'`);
        }
      })
      .join(', ');

expo-local-authentication

Provides an API for FaceID and TouchID (iOS) or the Fingerprint API (Android) to authenticate the user with a face or fingerprint scan.

MIT
Latest version published 3 months ago

Package Health Score

89 / 100
Full package analysis