Skip to content

kamerk22/react-native-hide-show-password-input

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

React-Native Hide Show Password InputText Component

npm version

This is a custom component for React Native, a simple Hide Show Password InputText, compatible with both ios and android.

demo

Installation.

Install the package with NPM.

npm install react-native-hide-show-password-input --save

Or with YARN

yarn install react-native-hide-show-password-input

How to use.

Very simple to use just add this component in your file.

// import packages
import React, { Component } from 'react';
import { View } from 'react-native';
import PasswordInputText from "passwordInput";


// use in your class
export default class App extends Component {
    render() {
        return (
            <View style={{margin: 20}}>
                <PasswordInputText/>
            </View>
        );
    }
}

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 100.0%