You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 4-6.RSVP
Socket
Book a DemoInstallSign in
Socket

react-native-floating-label-inputbox

Package Overview
Dependencies
Maintainers
1
Versions
20
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-native-floating-label-inputbox - npm Package Compare versions

Comparing version

to
1.0.5

2

package.json
{
"name": "react-native-floating-label-inputbox",
"version": "1.0.4",
"version": "1.0.5",
"description": "It is a input box for react native included with validation",

@@ -5,0 +5,0 @@ "main": "index.js",

@@ -0,1 +1,2 @@

# React Native Floating Label Input

@@ -8,6 +9,6 @@

npm i react-native-floating-label-inputbox
npm i react-native-floating-label-inputboxode
or
yarn add react-native-floating-label-inputbox
yarn add react-native-floating-label-inputbox

@@ -33,2 +34,29 @@ ## Props

## Example
import React,{useState} from 'react'
import {View,Text} from 'react-native'
import InputBox from 'react-native-floating-label-inputbox'
const App = () => {
const [name,setName]=useState("")
return (
<View style={{padding:10}}>
<InputBox
inputOutline
label={'Name'}
value={name}
onChangeText={(e)=>setName(e)}
/>
</View>
)
}
export default App
## Important

@@ -35,0 +63,0 @@