Thank you for this nice library! Really appreciate your work!
I was wondering how to focus another text input on pressing "Next" in the keyboard. Usually I used to give the first input a prop like onSubmitEditing={() => this.refs.input2.focus()} which focuses the input with the ref input2. This doesn't seem to work in this case.
Neither I use
<TextInputCell ref="input2"
nor defining a ref in the inputProps.
inputProps={{ ref: 'input2',
Any suggestions?
Thank you for this nice library! Really appreciate your work!
I was wondering how to focus another text input on pressing "Next" in the keyboard. Usually I used to give the first input a prop like
onSubmitEditing={() => this.refs.input2.focus()}which focuses the input with the refinput2. This doesn't seem to work in this case.Neither I use
<TextInputCell ref="input2"nor defining a ref in the inputProps.
inputProps={{ ref: 'input2',Any suggestions?