UNPKG

react-native-animated-input-label

Version:
140 lines (105 loc) 2.64 kB
## react-native-animated-input-label See the original project by Mayank Patel here: [React Native Floating Labels](https://www.npmjs.com/package/@webileapps/react-native-floating-labels) A `<AnimatedInput>` component for react-native. This is still very much a work in progress and only handles the simplest of cases, ideas and contributions are very welcome. ![Demo](https://raw.githubusercontent.com/mayank-patel/react-native-floating-labels/master/demo.gif) ## Add it to your project 1. Run `npm install react-native-animated-input-label --save` 2. `import AnimatedInput from 'react-native-animated-input-label'` ## Usage ```javascript 'use strict'; import React from "react" import AnimatedInput from 'react-native-animated-input-label' var { AppRegistry, StyleSheet, View, } = React; class form extends React.Component { constructor(props, context) { super(props, context); this.state = { dirty: false, }; } onBlur() { console.log('#####: onBlur'); } render() { return ( <View style={styles.container}> <AnimatedInput labelStyle={styles.labelInput} inputStyle={styles.input} style={styles.formInput} value='john@email.com' onBlur={this.onBlur} >Email</AnimatedInput> <AnimatedInput labelStyle={styles.labelInput} inputStyle={styles.input} style={styles.formInput} >First Name</AnimatedInput> <AnimatedInput labelStyle={styles.labelInput} inputStyle={styles.input} style={styles.formInput} >Last Name</AnimatedInput> </View> ); } }; var styles = StyleSheet.create({ container: { flex: 1, paddingTop: 65, backgroundColor: 'white', }, labelInput: { color: '#673AB7', }, formInput: { borderBottomWidth: 1.5, marginLeft: 20, borderColor: '#333', }, input: { borderWidth: 0 } }); AppRegistry.registerComponent('form', () => form); ``` Additional Props: AnimatedInput is just like any TextInput. It supports the below mentioned events handlers: ``` Following properties of TextInput are supported: - autoCapitalize - autoCorrect - autoFocus - bufferDelay - clearButtonMode - clearTextOnFocus - controlled - editable - enablesReturnKeyAutomatically - keyboardType - multiline - password - returnKeyType - selectTextOnFocus - selectionState - style - testID - value Following events are supported: - onBlur - onChange - onChangeText - onEndEditing - onFocus - onSubmitEditing ``` **MIT Licensed**