Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

https://github.com/mayank-patel/react-native-floating-labels

React Native Floating Labels Library
https://github.com/mayank-patel/react-native-floating-labels

Last synced: 2 months ago
JSON representation

React Native Floating Labels Library

Lists

README

        

## react-native-floating-labels [![Build Status](https://travis-ci.org/mayank-patel/react-native-floating-labels.svg?branch=master)](https://travis-ci.org/mayank-patel/react-native-floating-labels) [![npm version](https://badge.fury.io/js/react-native-floating-labels.svg)](https://badge.fury.io/js/react-native-floating-labels) [![MIT licensed](https://img.shields.io/badge/license-MIT-blue.svg)](https://raw.githubusercontent.com/hyperium/hyper/master/LICENSE) [![Code Climate](https://codeclimate.com/github/mayank-patel/react-native-floating-labels/badges/gpa.svg)](https://codeclimate.com/github/mayank-patel/react-native-floating-labels)

A `` 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-floating-labels --save`
2. `var FloatingLabel = require('react-native-floating-labels');`

## Usage

```javascript
'use strict';

var React = require('react-native');

var FloatingLabel = require('react-native-floating-labels');

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 (

Email
First Name
Last Name

);
}
};

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:

FloatingLabel 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**