You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have a multiline TextInput that I want to clear when the return key is pressed.
I have been able to clear the input with this.refs.input.clear() and this.refs.input.setNativeProps({ text: '' }) but these don't work when using them onKeyPress
This does not work
onKeyPress={event => if (event.nativeEvent.key === 'Enter') this.refs.input.clear()
I would expect that it would clear the input
Using RN 0.37.0
The text was updated successfully, but these errors were encountered:
I have a multiline TextInput that I want to clear when the return key is pressed.
I have been able to clear the input with this.refs.input.clear() and this.refs.input.setNativeProps({ text: '' }) but these don't work when using them onKeyPress
This does not work
onKeyPress={event => if (event.nativeEvent.key === 'Enter') this.refs.input.clear()
I would expect that it would clear the input
Using RN 0.37.0
The text was updated successfully, but these errors were encountered: