react-touchscreen-keyboards
v1.0.1
Published
React Keyboard Component
Downloads
3
Maintainers
Readme
react-touchscreen-keyboards
Quick start
Installing via npm
$ npm install --save-dev react-touchscreen-keyboards
Example
import React, { Component } from 'react';
import Keyboard from 'react-touchscreen-keyboards';
class MyKeyboard extends Component {
onReturnValue = (value = '') => {
console.log(value);
}
render() {
return (<Keyboard showKeyboard={true} type="text" value="" onReturnValue={this.onReturnValue} />);
}
}
export default MyKeyboard;
Props
See the examples for a more complete sample.
Running Local Example
$ git clone https://github.com/neilpipi1985/react-touchscreen-keyboards
$ cd ./react-touchscreen-keyboards
$ npm install
$ npm run test