Check if new fingerprint has enrolled
npm install react-native-biometrics-changed$ npm install react-native-biometrics-changed
js
import RNFingerprintChange from "react-native-biometrics-changed";
useEffect(() => {
//Check if there are registered fingerprints and if there is hardware support
// and after that call:
RNFingerprintChange.hasFingerPrintChanged().then((biometricsHasChanged) => {
if(biometricsHasChanged)
{
//do something
}
});
}, []);
`
Pull requests are always welcome :)`