1.0.0 • Published 5 years ago

react-native-float-text-input v1.0.0

Weekly downloads
1
License
MIT
Repository
github
Last release
5 years ago

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>
  );
};