Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

react-native-virtual-keyboard

Package Overview
Dependencies
Maintainers
1
Versions
15
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-native-virtual-keyboard

React native's software/virtual numeric keyboard, which can be used instead of Android/iOS ones if it suits your app style better.

  • 1.0.4
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
227
decreased by-23.83%
Maintainers
1
Weekly downloads
 
Created
Source

NPM version

Software/virtual numeric keyboard, which can be used instead of Android/iOS ones if it suits your app style better.

screenshot_1

Installation

$ npm i react-native-virtual-keyboard --save

Basic Usage

import VirtualKeyboard from 'react-native-virtual-keyboard';

class Example extends React.Component {

	constructor(props) {
		super(props);
		this.state = {
			text: '',
		};
	}

	render() {
		return (
			<View style={{flex:1}}>
				<Text>{this.state.text}</Text>
				<VirtualKeyboard color='white' pressMode='string' onPress={(val) => this.changeText(val)} />
			</View>
		);
	}

	changeText(newText) {
		this.setState({text: newText});
	}

}

Props

KeyTypeDefaultDescription
pressModestring'string'Value to pass to onPress. 'char' = each individual pressed symbol, 'string' = form and pass whole string
colorstring'gray'color of text and backspace tinting (if enabled)
onPressfunction*requiredThe handler when a key is pressed. If pressMode === 'char', 'back' is passed for backspace
backspaceImgnumber'backspace.png'Image to use for backspace. Default one is used if nothing provided
applyBackspaceTintbooltruetint backspace with tintColor style option, or leave it as it is

Contribution

  • @nshaposhnik The main author.

Keywords

FAQs

Package last updated on 09 Mar 2017

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc