As titled, is this possible?
I know can disable the React Native textinput by setting
editable={false}
but i need to have the functionality for other keys like Enter and Backspace to work at the same time. But i don't think that will work because setting editable
as false effectively makes the input blur all the time, therefore cannot make attributes like onKeyPress
and onSubmitEditing
works.
Is there a work around for this?