react-native-keyevent icon indicating copy to clipboard operation
react-native-keyevent copied to clipboard

Capture external keyboard keys or remote control button events

Results 57 react-native-keyevent issues
Sort by recently updated
recently updated
newest added

Do you have a plan to support keyevent in react-native-windows?

I installed like: ```bash yarn add react-native-keyevent react-native link react-native-keyevent ``` In my code: ```js import KeyEvent from 'react-native-keyevent'; class MyComponent extends Component { componentDidMount() { KeyEvent.onKeyUpListener((keyCode) => { console.log(`Key...

A simple example: This in the App.js will always show the key pressed: ``` useEffect(() => { KeyEvent.onKeyDownListener((keyEvent: any) => { console.log(`Key: ${keyEvent.pressedKey}`); return () => KeyEvent.removeKeyDownListener(); }, []); ```...

Hi friends, Thank you for this great library! I have a question: I'm trying to use this library to work with bluetooth-connected barcode scanners. I created a component in my...

Im looking to implement this for iOS and Android, android works perfect but as per docs iOS is missing keyDown implementation. Is there an issue which related to this? I...

It looks like this has something to do with the code in AppDelegate.m, but I don't know enough about the language at the moment to suggest a fix sorry. As...

I have a custom hook `useKeyEventListener` that looks more of less like this: ```JavaScript const useKeyEventListener = () => { useEffect(() => { KeyEvent.onKeyDownListener(() => { /* do stuff */...

When I press the microphone button for google assistant popup can I catch the event when I press the microphone button and don't let the google assistant work

Android TV Support?