react-native-confirmation-code-input icon indicating copy to clipboard operation
react-native-confirmation-code-input copied to clipboard

How can i create autofill when i recieve otp via sms.

Open SukumarSmart opened this issue 5 years ago • 2 comments

SukumarSmart avatar Apr 25 '19 06:04 SukumarSmart

@SukumarSmart First create a ref like below : this.otpCodeRef = React.CreateRef() <CodeInput ref={(value) => this.otpCodeRef = value} .... />

After reading the 4 digit OTP from the 3rd part module ( react-native-android-sms-listener ) const verificationCode = '<Filled by message>' const tmp = [...verificationCode] this.otpCodeRef.setState({ codeArr: tmp, currentIndex: 3 })

gsmohan avatar May 18 '19 15:05 gsmohan

@gsmohan Thanks for the answer

mohamed-ikram avatar Jul 16 '20 19:07 mohamed-ikram