
Security News
Browserslist-rs Gets Major Refactor, Cutting Binary Size by Over 1MB
Browserslist-rs now uses static data to reduce binary size by over 1MB, improving memory use and performance for Rust-based frontend tools.
react-native-key-command
Advanced tools
A cross-platform module that registers and listens to specified keyboard events, dispatching the payload to JavaScript
A cross-platform module that registers and listens to specified keyboard events, dispatching the payload to JavaScript.
ā Android ā iOS ā Web
npm install react-native-key-command
cd ios && pod install
Changes required in your AppDelegate.m
// add library imports in the top of your file
#import <HardwareShortcuts.h>
@implementation AppDelegate
..
// Add keyCommands and handleKeyCommand methods in AppDelegate class
- (NSArray *)keyCommands {
return [HardwareShortcuts sharedInstance].keyCommands;
}
- (void)handleKeyCommand:(UIKeyCommand *)keyCommand {
[[HardwareShortcuts sharedInstance] handleKeyCommand:keyCommand];
}
@end
Changes required in your MainActivity.java
// add library imports in the top of your file
import android.view.KeyEvent;
import com.expensify.reactnativekeycommand.KeyCommandModule;
public class MainActivity extends ReactActivity {
..
// Add a new onKeyDown method in MainActivity class
@Override
public boolean onKeyDown(int keyCode, KeyEvent event) {
KeyCommandModule.getInstance().onKeyDownEvent(keyCode, event);
return super.onKeyDown(keyCode, event);
}
import * as KeyCommand from 'react-native-key-command';
// ...
/**
* [CMD + F] combination listener
*/
React.useEffect(() => {
const SEARCH_COMMAND = {input: 'f', modifierFlags: KeyCommand.constants.keyModifierCommand};
return KeyCommand.addListener(SEARCH_COMMAND, console.log);
}, []);
/**
* [Esc] key listener
*/
React.useEffect(() => {
const ESCAPE_COMMAND = {input: KeyCommand.constants.keyInputEscape};
return KeyCommand.addListener(ESCAPE_COMMAND, console.log);
}, []);
List of available modifier flags. Values on Android may vary.
KeyCommand.constants = {
"keyInputDownArrow": 20,
"keyInputEscape": 111,
"keyInputLeftArrow": 21,
"keyInputRightArrow": 22,
"keyInputUpArrow": 19,
"keyModifierCapsLock": 65536,
"keyModifierCommand": 1048576,
"keyModifierControl": 262144,
"keyModifierControlCommand": 1310720,
"keyModifierControlOption": 786432,
"keyModifierControlOptionCommand": 1835008,
"keyModifierNumericPad": 78,
"keyModifierOption": 524288,
"keyModifierOptionCommand": 1572864,
"keyModifierShift": 131072,
"keyModifierShiftCommand": 1179648
}
Imperative API provides you with granular control over the library, e.g:
import * as KeyCommand from 'react-native-key-command';
// ...
const SEARCH_COMMAND = {input: 'd', modifierFlags: KeyCommand.constants.keyModifierCommand};
/**
* Register a command for [k + CMD] combination
*/
KeyCommand.registerKeyCommands([SEARCH_COMMAND]);
/**
* Add a global event listener that will trigger when any
* registered keycommand is pressed
*/
KeyCommand.eventEmitter.addListener('onKeyCommand', console.log);
/**
* Add a global event listener that will trigger when any
* registered keycommand is pressed
*/
KeyCommand.eventEmitter.addListener('onKeyCommand', console.log);
/**
* Unregister keycommand
*/
KeyCommand.unregisterKeyCommands([SEARCH_COMMAND]);
See the contributing guide to learn how to contribute to the repository and the development workflow.
MIT
FAQs
A cross-platform module that registers and listens to specified keyboard events, dispatching the payload to JavaScript
The npm package react-native-key-command receives a total of 6,823 weekly downloads. As such, react-native-key-command popularity was classified as popular.
We found that react-native-key-command demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago.Ā It has 1 open source maintainer 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.
Security News
Browserslist-rs now uses static data to reduce binary size by over 1MB, improving memory use and performance for Rust-based frontend tools.
Research
Security News
Eight new malicious Firefox extensions impersonate games, steal OAuth tokens, hijack sessions, and exploit browser permissions to spy on users.
Security News
The official Go SDK for the Model Context Protocol is in development, with a stable, production-ready release expected by August 2025.