doochik / react-native-keyboard-spacer

Plug and play iOS react-native keyboard spacer view.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

NPM

react-native-keyboard-spacer

Plug and play iOS react-native keyboard spacer view.

image

Quick Start

Install View: npm install --save react-native-keyboard-spacer

Follow Setup instructions for react-native-keyboardevents

Example Usage

The view will automatically perform a layout animation when the keyboard appears or disappears.

var React = require('React');
var { TextEntry } = React;
var KeyboardSpacer = require('react-native-keyboard-spacer');

class App extends React.Component {
	render() {
		return (
			<View style={{flex: 1}}>
				<TextEntry style={{flex: 1}}/>
				<View style={{
					backgroundColor: 'red',
					height: 5,
					left: 0, 
					right: 0,
					bottom: 0}}/>
				<KeyboardSpacer/>
			</View>
		);
	}
}

React.AppRegistry.registerComponent('DemoApp',  () => App);

About

Plug and play iOS react-native keyboard spacer view.

License:MIT License


Languages

Language:JavaScript 100.0%