react-native-otp-auto
v1.0.0
Published
A React Native component for OTP input with **Android auto OTP reading** using Google SMS Retriever API.
Maintainers
Readme
React Native OTP Auto
A React Native component for OTP input with Android auto OTP reading using Google SMS Retriever API.
Installation
npm install react-native-otp-autoUsage
import OtpInput, { startOtpListener } from 'react-native-otp-auto';
useEffect(() => {
const stop = startOtpListener((code) => console.log('Auto OTP:', code));
return stop;
}, []);
<OtpInput length={6} onComplete={(code) => console.log('Manual OTP:', code)} />