I'm facing a problem. In my react native app, I have Pin code which I used and installed @haskkor/react-native-pincode - npm. The problem is I want to get the value of the register pin code in my mobile app but it seems there's no command in this npm to get the registered value because I want to store it together with my google email details through firestore or asyncStorage. I just want to print the value of registered if `pin is available. I'ts very helpful for me if this solve thanks in advance.
Source : @haskkor/react-native-pincode
import PINCode, {
hasUserSetPinCode,
resetPinCodeInternalStates,
deleteUserPinCode,
} from "@haskkor/react-native-pincode";
const [PinCodeVisible, setPin] = useState({ PINCodeStatus: "choose", showPinLock: false });
async function pinCode() {
const hasPin = await hasUserSetPinCode();
console.log(hasUserSetPinCode);
if (!hasPin) {
console.log("No pin");
setPin({ PINCodeStatus: "choose", showPinLock: true });
}
else if (hasPin) {
console.log ("PRINT HERE - HOW TO GET THE VALUE OF REGISTERED PIN CODE ---------------------- ");
setPin({ PINCodeStatus: "enter", showPinLock: true });
}
else {
console.log("does not have pin");
_showChoosePinLock();
}
}