react-native-floating-title-text-input
v1.0.7
Published
Custom text input for react-native. When user starts to type,placeholder will move above the text input.
Downloads
19
Maintainers
Readme
react-native-floating-title-text-input
What is this?
This component will render a custom text field with floating title. When there is no value, the placeholder will be centered. Once there is a value, placeholder will be shown on the top of textInput.
Installation
npm install react-native-floating-title-text-input --save
Usage example
import FloatingTitleTextInput from "react-native-floating-title-text-input"
class SomeComponent extends Component {
render () {
return (
<View>
<FloatingTitleTextInput
placeholder={"name of field"}
onChangeText = {(value)=>console.log(value)}
onFocus={()=>console.log("textInput in focus")}
onBlur={(value)=>console.log(value)}
titleStyle = {marginLeft : 8}
placeholderTextColor = "#00000"
style = {{marginVertical : 10 , padding :10}}
keyboardType="numeric"
secureTextEntry={false}
/>
</View>
);
}
}