0.1.4 • Published 5 years ago

dual-input-component v0.1.4

Weekly downloads
14
License
-
Repository
github
Last release
5 years ago

#Dual Input Component Single switchable component for email and phone number (web & react-native support) :globe_with_meridians::iphone:

license GitHub top language npm

Installation and usage

Install the package via npm:

npm install --save dual-input-component

Then use it in your app:

import React, { Component } from 'react';
import CustomInput from 'dual-input-component';

class App extends Component
{

    handleChange=(value)=>{
        console.log(value)
    }
    // => {dialCode: "+91"
           parsedNumber: "+913528712361"
           phoneNumber: "3528712361"}
    
  render()
  {
    return (
        <CustomInput
            onChange={(value,state)=>this.handleChange(value)}
            disableEmail={true}
            style={{
              width:200,
              backgroundColor: 'white',
              alignItems: 'center',
              justifyContent: 'center',}}
        />
    );
  }
}

Props

##Contributing: All your suggestions and PRs are welcome.