tttstudios / react-native-otp-input

Tiny Javascript library which provides an elegant UI for user to input one time passcode.
MIT License
530 stars 239 forks source link

null is not an object (evaluating 'field.blur') #96

Open Harikasai999 opened 4 years ago

Harikasai999 commented 4 years ago

Describe the bug Hi, i am using this module. But i am getting error null is not an object (evaluating 'field.blur') after filling the code inputs.

Code

<OTPInputView
                        autoFocusOnLoad
                        style={{ width: "100%", height: 100 }}
                        pinCount={4}
                        onCodeChanged={(code) => {
                            setCode(code);
                        }}
                        code={code}
                        codeInputFieldStyle={styles.underlineStyleBase}
                        codeInputHighlightStyle={styles.underlineStyleHighLighted}
                        onCodeFilled={(code) => {
                            Keyboard.dismiss()
                            // setCode(code);
                        }}
                    />

Screenshots ezgif com-video-to-gif

priyankaEdufund commented 4 years ago

I'm also getting the same error, please update once you resolve it :)

RuchiraSwarnapriya commented 3 years ago

Anyone Solve this error ?

priyankaEdufund commented 3 years ago

Anyone Solve this error ?

We did it by using our own logic. as wasn't able to solve this "null" issue

RuchiraSwarnapriya commented 3 years ago

Anyone Solve this error ?

We did it by using our own logic. as wasn't able to solve this "null" issue

Can u share that ?

priyankaEdufund commented 3 years ago

Anyone Solve this error ?

We did it by using our own logic. as wasn't able to solve this "null" issue

Can u share that?

Sorry I can't share you the exact logic but can tell you the flow.

RuchiraSwarnapriya commented 3 years ago

Can you please tell

priyankaEdufund commented 3 years ago

Can you please tell

https://tech.goibibo.com/building-otp-verification-component-in-react-native-with-auto-read-from-sms-2a9a400015b0

You can refer to this link

RuchiraSwarnapriya commented 3 years ago

Can you please tell

https://tech.goibibo.com/building-otp-verification-component-in-react-native-with-auto-read-from-sms-2a9a400015b0

You can refer to this link

Thank you