react-native-fingerprint-scanner icon indicating copy to clipboard operation
react-native-fingerprint-scanner copied to clipboard

Provide Fingerprint, Touch ID, and Face ID Scanner for React Native (Compatible with both Android and iOS)

Results 73 react-native-fingerprint-scanner issues
Sort by recently updated
recently updated
newest added

Hi Team, in iPhone 5 there is no touch id but when we call isSensorAvailable it is returning **FingerprintScannerNotAvailable** instead of **FingerprintScannerNotSupported**. Adding the above condition resolved the issue, please...

Hi, Currently isSensorAvailable() returns the biometric method only if user has enrolled. Is there any way to get device biometric support type even if they didn't enroll?

I made a commit with the wrong commit message, so sorry :(. This a simple PR which fixes a minor problem.

even if user didn't scan finger ,onAttempt function call.

When the device is locked on the fingerprint scanner screen and then unlocked again without closing application, fingerprint scanning doesn't work

### Description I get this error when running on Android (OnePlus 6, Samsung Galaxy S8 and a couple of others): > Interface `com.samsung.android.fingerprint.FingerprintManager$EnrollFinishListener` not found and > {PATH HERE}/jars/libs/MeiZu_Fingerprint.jar: D8:...

I have implemented the react-native-fingerprint-scanner in my application and it works great. I only discovered an event on the Samsung galaxy S10 with a inscreen fingerprintreader (android 9). If the...

``` FingerprintScanner.authenticate({ onAttempt: this.handleAuthenticationAttempted }) .then(() => { console.log('success'); this.setState({ errorMessage: undefined }); this.handleFingerprintDismissed(true); }) .catch(error => { this.setState({ errorMessage: error }); console.log('errorr', error); }); ``` sometimes inside componentdidmount this...

bug

Hi there - first, thanks for the great package. Second, I assume MIT is the license applied to this package in line with the package.json, however it would be really...