
Research
/Security News
Critical Vulnerability in NestJS Devtools: Localhost RCE via Sandbox Escape
A flawed sandbox in @nestjs/devtools-integration lets attackers run code on your machine via CSRF, leading to full Remote Code Execution (RCE).
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 1 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.
Research
/Security News
A flawed sandbox in @nestjs/devtools-integration lets attackers run code on your machine via CSRF, leading to full Remote Code Execution (RCE).
Product
Customize license detection with Socket’s new license overlays: gain control, reduce noise, and handle edge cases with precision.
Product
Socket now supports Rust and Cargo, offering package search for all users and experimental SBOM generation for enterprise projects.