npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

really-simple-otp-input

v1.0.0

Published

A simple component for collecting One Time Passcodes from users in React Native Apps

Downloads

12

Readme

Really Simple One Time Passcode Input

This is a simple one time passcode input for your React Native App. I made this because I couldn't find a simple one that suited my needs. I wanted a simple one that I could just drop in and use without having to worry about styling or anything else. This is my first React Native component so please let me know if there are any issues or if you have any suggestions.

Installation

NPM: npm install react-native-really-simple-otp-input
Yarn: yarn add react-native-really-simple-otp-input

Usage

import OTPInput from 'react-native-really-simple-otp-input';
OtpInput value={code}
         onValueChanged={(value)=> {
                     setCode(value)
                 }}
         onAutofill={()=>setOtpAutofilled(true)}
         onNewCodeRequested={resendCode}/>

A screenshot of the component

Props

| Prop | Type | Default | Description | | --- | --- | --- |--------------------------------------------------------------------------------------| | value | Array | [] | The value of the OTP input. This should be an array of strings. One string per digit | | numberOfDigits | Number | 6 | The number of digits that make up the code | | resendTimerLength | Number | 30 | The length of time in seconds that the resend button is disabled for | | onValueChanged | Function | () => {} | A function that is called when the value of the input changes. The value is passed as a parameter | | onAutofill | Function | () => {} | A function that is called when the code is autofilled by the OS. This is useful if you want to do something when the code is autofilled | | onNewCodeRequested | Function | () => {} | A function that is called when the user taps the resend button. This is useful if you want to do something when the user requests a new code | | containerStyle | Object | {} | A style object that is applied to the container of the component | | headerTextStyle | Object | {} | A style object that is applied to the header text of the component | | digitInputStyle | Object | {} | A style object that is applied to the input for each digit | | codeResendEnabledStyle | Object | {} | A style object that is applied to the resend button when it is enabled | | codeResendDisabledStyle | Object | {} | A style object that is applied to the resend button when it is disabled | | hideCode | Boolean | false | A boolean that determines whether the code is hidden or not. If true the code will be hidden with dots | | headerText | String | "Enter your One Time Passcode" | The text that is displayed above the input |

License

MIT License - Feel free to use this in any project you like.

Contributing

As this is my first React Native component I would love to hear any suggestions or improvements. Please feel free to open an issue or a pull request.

Credits

This project was inspired by react-native-otp-input