
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
react-native-kuminput
Advanced tools
This is a react native npm package containing a More and stylish functionalities rather than TextInput.
This package contain more stylish and more functionalities than TextInput from react native
Native Cli: npm i react-native-vector-icons react-native-elements react-native-animatable react-native-kuminput -f
Expo: npm i react-native-elements react-native-animatable react-native-kuminput

import React, { useState } from 'react';
import {KumInput} from 'react-native-kuminput';
import {
View,
Text
} from 'react-native';
export default function App(){
const [isSecureEntry, setIsSecureEntry] = useState(true);
return (
<View>
<KumInput
label={{
name: 'Password',
style:{color: 'black', fontSize: 16,marginHorizontal: 10}
}}
placeholder='Your Password'
secureTextEntry={isSecureEntry}
leftIcon={{
name:'key',
type: 'ionicon',
color: '#014e78',
onPress:()=>console.log("left icon pressed!")
}}
rightIcon={{
name: isSecureEntry ? 'visibility-off' : 'visibility',
type: 'material',
color: '#014e78',
onPress:()=>setIsSecureEntry(!isSecureEntry)
}}
error={{
condition: true,
message: 'Password must be 8 characters long',
animation:'bounceIn',
style:{fontSize: 16,marginHorizontal: 10}
}}
borderColorOnFocus={'#014e78'}
onChangeText={(val) => console.log(val)}
style={{fontSize: 16}}
containerStyle={{borderWidth: 1, borderRadius: 10,paddingVertical: 2, margin: 5, marginHorizontal: 10 }}
/>
</View>
);
}
After installing npm packages, configure the react-native-vector-icons first before running a code see here https://aboutreact.com/react-native-vector-icons/. If you are using Expo, no need to install or configure react-native-vector-icons
| Props | Type | Default | Description |
|---|---|---|---|
| label | Object | {name: null, style: {}} | |
| placeholder | String | empty string | |
| placeholderTextColor | String | gray | |
| value | String | empty string | |
| defaultValue | String | empty string | |
| secureTextEntry | Boolean | false | |
| containerStyle | Object | {} | |
| keyboardType | String | default | |
| maxLength | Number | no limit | |
| multiline | Boolean | false | |
| editable | Boolean | true | |
| style | Object | {} | styles of the input field |
| rightIcon | Object | {name: null, type: null, color: null, size: 25, onPress:()=>{}} | |
| leftIcon | Object | {name: null, type: null, color: null, size: 25, onPress:()=>{}} | |
| error | Object | {condition: false, message:null,animation:null,style: {}} | animation props: bounce, flash, jello, pulse, rotate, rubberBand, bounceIn and much more you can check at https://www.npmjs.com/package/react-native-animatable |
| borderColorOnFocus | String | black | |
| borderColorOnBlur | String | black | |
| onFocus | Function | ()=>{} | |
| onBlur | Function | ()=>{} | |
| onChangeText | Function | ()=>{} | |
| onEndEditing | Function | ()=>{} | |
| onSubmitEditing | Function | ()=>{} |
FAQs
This is a react native npm package containing a More and stylish functionalities rather than TextInput.
We found that react-native-kuminput 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.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.