Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

react-native-otp-inputs

Package Overview
Dependencies
Maintainers
1
Versions
47
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-native-otp-inputs

One-time password inputs built in pure JS for React-Native

  • 0.3.0
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
8K
increased by17.36%
Maintainers
1
Weekly downloads
 
Created
Source

react-native-otp-inputs

Demo

Demo

Description

react-native-otp-inputs is fully customizable, pure JavaScript package, that provides solution for One-time password feature with user friendly events like moving to previous input with backspace or going to next when filled in.

Supported version of React Native >= 0.53.0

It's because of onKeyPress event implementation in android.

Basic usage

import React, { Component } from 'react'
import { View } from 'react-native'
import OtpInputs from 'react-native-otp-inputs'

export default class App extends Component {
  render() {
    return (
      <View style={styles.container}>
        <OtpInputs handleChange={code => console.log(code)} numberOfInputs={6} />
      </View>
    )
  }
}

API

MethodTypeRequiredDefaultDescription
numberOfInputsnumbertrue (1..6)4How many inputs should be rendered
handleChangefunctiontrueconsole.logReturns otp code which is typed in inputs
focusedBorderColorstringfalse#0000ffborderColor of input when focused
inputTextErrorColorstringfalse#ff0000Color of text inside input container when error is passed in
errorMessagestringfalsenoneError message that is displayed above inputs
containerStylesstyle (object)falsenoneStyles applied to whole container
inputContainerStylesstyle (object)falsenoneStyles applied to each input container
errorMessageContainerStylesstyle (object)falsenoneStyles applied to error message container
errorMessageTextStylesstyle (object)falsenoneStyles applied to error message text

Licence MIT

Keywords

FAQs

Package last updated on 22 Feb 2018

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc