Coder Social home page Coder Social logo

react_easypin's Introduction

react-pin-input

A customizable PIN input component for React apps.

Introduction

react-pin-input provides an easy way to add a PIN code input to your React app. It displays an array of number inputs as circles for entering a PIN.

Features

  • Automatically focuses inputs and moves caret as PIN is entered
  • Disables used inputs and enables next input
  • Backspace/Delete functionality to go back an input
  • Custom submit button and submit handler
  • Flexbox based responsive design
  • Customizable number of inputs
  • Row or column layout

Usage

Install from npm:

npm install react-pin-input  

Basic usage:

import PinInput from 'react-pin-input';  

function App() {  

  const handleSubmit = (pin) => {
    console.log(pin);  
  }  

  return (  
    <PinInput    
      pinCount={4}
      autoSubmit={true}  
      OnSubmit={handleSubmit}  
    />  
  );  
}  

Props

The component accepts the following props:

  • pinCount: Number of input circles to display
  • autoSubmit: Automatically call submit handler if PIN fully entered
  • OnSubmit: Function called with entered PIN on submit
  • submitBtn: React element for custom submit button
  • flexDirection: 'row' or 'column' layout

License

MIT

Thankyou for viewing. Have a lovely day ahead!

Authors

  • Made with โค by Shekhar Maharaj

๐Ÿ”— Links

portfolio linkedin twitter

'Making dreams come true'

react_easypin's People

Contributors

shekog1 avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.