We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
0.51
I am sending a message to the webview on a keyboard event listener
componentWillMount() { this.keyboardDidShowListener = Keyboard.addListener('keyboardDidShow', this.keyboardDidShow.bind(this)); }
The thing is that the method keyboardDidShow is receiving the webview but the on method is not working on the webview side.
keyboardDidShow
on
If I log the emit this.webview.messagesChannel.emit('toggleKeyboardNative') I get returned false
this.webview.messagesChannel.emit('toggleKeyboardNative')
false
Other emit calls works in the webview side with the on receivers.
emit
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Platform
What react-native version are you using?
0.51
Issue details
I am sending a message to the webview on a keyboard event listener
The thing is that the method
keyboardDidShow
is receiving the webview but theon
method is not working on the webview side.If I log the emit
this.webview.messagesChannel.emit('toggleKeyboardNative')
I get returnedfalse
Other
emit
calls works in the webview side with theon
receivers.The text was updated successfully, but these errors were encountered: