“bereaksi masuk biometrik asli masuk” Kode Jawaban

bereaksi masuk biometrik asli masuk

import ReactNativeBiometrics from 'react-native-biometrics'
 
const { biometryType } = await ReactNativeBiometrics.isSensorAvailable()
 
if (biometryType === ReactNativeBiometrics.TouchID) {
  //do something fingerprint specific
}
Frantic Ferret

bereaksi masuk biometrik asli masuk

import ReactNativeBiometrics from 'react-native-biometrics'
 
const { biometryType } = await ReactNativeBiometrics.isSensorAvailable()
 
if (biometryType === ReactNativeBiometrics.Biometrics) {
  //do something face id specific
}
Frantic Ferret

bereaksi masuk biometrik asli masuk

import ReactNativeBiometrics from 'react-native-biometrics'
 
const { biometryType } = await ReactNativeBiometrics.isSensorAvailable()
 
if (biometryType === ReactNativeBiometrics.FaceID) {
  //do something face id specific
}
Frantic Ferret

bereaksi masuk biometrik asli masuk

import ReactNativeBiometrics from 'react-native-biometrics'
 
ReactNativeBiometrics.isSensorAvailable()
  .then((resultObject) => {
    const { available, biometryType } = resultObject
 
    if (available && biometryType === ReactNativeBiometrics.TouchID) {
      console.log('TouchID is supported')
    } else if (available && biometryType === ReactNativeBiometrics.FaceID) {
      console.log('FaceID is supported')
    } else if (available && biometryType === ReactNativeBiometrics.Biometrics) {
      console.log('Biometrics is supported')
    } else {
      console.log('Biometrics not supported')
    }
  })
Frantic Ferret

Jawaban yang mirip dengan “bereaksi masuk biometrik asli masuk”

Pertanyaan yang mirip dengan “bereaksi masuk biometrik asli masuk”

Lebih banyak jawaban terkait untuk “bereaksi masuk biometrik asli masuk” di JavaScript

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya