react-native-hotkeys
v0.5.9
Published
Hotkeys support for React Native (iOS and web)
Downloads
379
Maintainers
Readme
react-native-hotkeys
React Native module to enable listening to and capturing hotkeys. Currently with support for iOS (tested on iPad and M1 Macs) and web.
API documentation
Installation in managed Expo projects
For managed Expo projects, please follow the installation instructions in the API documentation for the latest stable release. If you follow the link and there is no documentation available then this library is not yet usable within managed projects — it is likely to be included in an upcoming Expo SDK release.
Installation in bare React Native projects
For bare React Native projects, you must ensure that you have installed and configured the expo
package before continuing.
Add the package to your npm dependencies
npm install react-native-hotkeys
or
yarn add react-native-hotkeys
Configure for iOS
Run npx pod-install
after installing the npm package.
Usage
Start by wrapping your app in the KeysProvider:
import {
KeysProvider
} from 'react-native-hotkeys'
const App = () => {
return (
<KeysProvider>
<YourApp />
</KeysProvider>
)
}
The easiest way to use it is with the useHotkey Hook:
import {
ModifiersType, ReactNativeKeysKeyCode, useHotkey,
} from 'react-native-hotkeys'
// use the useHotkey hook anywhere
useHotkey(ReactNativeKeysKeyCode.Escape, (event) => {
// do something
})
useHotkey(ReactNativeKeysKeyCode.ArrowLeft, (event) => {
// move player to the left
})
// use modifiers
useHotkey(ReactNativeKeysKeyCode.ArrowLeft, (event) => {
// do something different
}, { modifiers: ModifiersType.Shift })
// return true to indicate that the event was handled (and priority to override priority for nestled handlers)
useHotkey(ReactNativeKeysKeyCode.ArrowLeft, (event) => {
return true
}, { priority: 10 })
Optionally you can directly use addEventListener:
addEventListener(ReactNativeKeysKeyCode.Escape, (event) => {
// do something
})
Contributing
Contributions are very welcome! Please refer to guidelines described in the contributing guide.