react-native-float-text-input
v1.0.0
Published
React Native text input with floating label component
Downloads
6
Readme
react-native-float-text-input
React Native text input with floating label
Installation
npm i react-native-float-text-input --save
Usage
import { FloatTextInput } from 'react-native-float-text-input';
const App = () => {
return (
<View>
<FloatTextInput
label="RNFloatTextInputPlayground"
value={this.state.value}
onChangeText={value => this.setState({ value })}
/>
</View>
);
};