1.0.1 • Published 6 years ago

react-touchscreen-keyboards v1.0.1

Weekly downloads
1
License
MIT
Repository
-
Last release
6 years ago

react-touchscreen-keyboards

NPM version npm download

image

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