
Product
Introducing Scala and Kotlin Support in Socket
Socket now supports Scala and Kotlin, bringing AI-powered threat detection to JVM projects with easy manifest generation and fast, accurate scans.
react-native-floating-label-inputbox
Advanced tools
It is a input box for react native included with validation
In this TextInput included many functionality like floating placeholder, validation warning with custom alert text and also added Left or Right icon set in Inputbox.
To install just input the following command:
npm i react-native-floating-label-inputbox
or
yarn add react-native-floating-label-inputbox
inputOutline Style | Default style | Required Field |
---|---|---|
![]() | ![]() | ![]() |
Props | Type | Description |
---|---|---|
label | Text | It is a placeholder and label. |
required | boolean | Default false, when it is true then required red star show. |
isInvalid | boolean | Default false, when it is true then warning show. |
alertText | Text | Set text for warning. |
customLabelStyle | object | For Styling of label. |
inputboxStyle | object | For styling of inputbox . |
warningStyle | object | For Styling of warning. |
inputOutline | boolean | Default false,when it is true then Outline field show. |
leftIcon | View Components | Set left Icon. |
rightIcon | View Components | Set right Icon. |
onChangeText | Fuction | Callback function for set value of input box . |
value | variable | set value of input box. |
secureTextEntry | boolean | Default is false When it is true then create password inputbox. |
passHideIcon | View Components | set Password Hide icon. |
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
When set icons in inputbox firstly install react-native-vector-icons or other Libraries and configure it .
npm i react-native-vector-icons
After that you can import that library
import React,{useState} from 'react'
import {View,Text} from 'react-native'
import InputBox from 'react-native-floating-label-inputbox'
import FontAwesome from 'react-native-vector-icons/FontAwesome'
const App = () => {
const [password,setPassword]=useState("")
return (
<View style={{padding:10}}>
<InputBox
inputOutline
label={'Password'}
value={password}
onChangeText={(e)=>setPassword(e)}
required
secureTextEntry
rightIcon={<FontAwesome name={'eye'} size={20}/>}
passHideIcon={<FontAwesome name={'eye-slash'} size{20}/>}
/>
</View>
)
}
export default App
Rest of props are same as of InputText
Thank-you ☺️ Manish Kumar Choudhary
FAQs
It is a input box for react native included with validation
The npm package react-native-floating-label-inputbox receives a total of 4 weekly downloads. As such, react-native-floating-label-inputbox popularity was classified as not popular.
We found that react-native-floating-label-inputbox demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
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.
Product
Socket now supports Scala and Kotlin, bringing AI-powered threat detection to JVM projects with easy manifest generation and fast, accurate scans.
Application Security
/Security News
Socket CEO Feross Aboukhadijeh and a16z partner Joel de la Garza discuss vibe coding, AI-driven software development, and how the rise of LLMs, despite their risks, still points toward a more secure and innovative future.
Research
/Security News
Threat actors hijacked Toptal’s GitHub org, publishing npm packages with malicious payloads that steal tokens and attempt to wipe victim systems.