Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
@unpourtous/react-native-custom-keyboard
Advanced tools
react native custom keyboard for both Android and iOS
$ npm install react-native-custom-keyboard --save
$ react-native link react-native-custom-keyboard
Libraries
➜ Add Files to [your project's name]
node_modules
➜ react-native-custom-keyboard
and add RNCustomKeyboard.xcodeproj
libRNCustomKeyboard.a
to your project's Build Phases
➜ Link Binary With Libraries
Cmd+R
)<android/app/src/main/java/[...]/MainActivity.java
import cn.reactnative.customkeyboard.RNCustomKeyboardPackage;
to the imports at the top of the filenew RNCustomKeyboardPackage()
to the list returned by the getPackages()
methodandroid/settings.gradle
:
include ':react-native-custom-keyboard'
project(':react-native-custom-keyboard').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-custom-keyboard/android')
android/app/build.gradle
:
compile project(':react-native-custom-keyboard')
Register a component as custom keyboard:
import React, { Component } from 'react';
import {
TouchableOpacity,
Text,
View,
} from 'react-native';
import { register, insertText } from 'react-native-custom-keyboard';
class MyKeyboard extends Component {
onPress = () => {
insertText(this.props.tag, 'Hello, world');
};
render() {
return (
<View>
<TouchableOpacity onPress={this.onPress}>
<Text>Hello, world</Text>
</TouchableOpacity>
</View>
);
}
}
register('hello', () => MyKeyboard);
Use CustomTextInput
instead of TextInput
.
import React, { Component } from 'react';
import {CustomTextInput} from 'react-native-custom-keyboard';
class MyPage extends Component {
state = {
value: '';
};
onChangeText = text => {
this.setState({value: text});
};
render() {
return (
<View>
<CustomTextInput customKeyboardType="hello" value={this.state.value} onChangeText={this.onChangeText} />
</View>
);
}
}
Register a custom keyboard type.
Install custom keyboard to a TextInput
.
Generally you can use CustomTextInput instead of this. But you can use this API to install/change custom keyboard dynamically.
Uninstall custom keyboard from a TextInput
dynamically.
Use in a custom keyboard, insert text to TextInput
.
Use in a custom keyboard, delete selected text or the charactor before cursor.
Use in a custom keyboard, delete selected text or the charactor after cursor.
Use in a custom keyboard, move cursor to selection start or move cursor left.
Use in a custom keyboard, move cursor to selection end or move cursor right.
Use in a custom keyboard. Switch to system keyboard.
Next time user press or focus on the TextInput
, custom keyboard will
appear again. To keep using system keyboard, call uninstall
instead.
Use instead of TextInput
, this component support all properties of TextInput
.
Use a registered custom keyboard.
FAQs
react native custom keyboard for both Android and iOS
The npm package @unpourtous/react-native-custom-keyboard receives a total of 1 weekly downloads. As such, @unpourtous/react-native-custom-keyboard popularity was classified as not popular.
We found that @unpourtous/react-native-custom-keyboard demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 16 open source maintainers collaborating on the project.
Did you know?
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.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.