I am using react native hook. I want to focus on the next textinput when I press Next. I get the error 'focus' is not defined. What is the cause and remedy?
const ref_input = useRef();
<TextInput
..
returnKeyType={'next'}
onSubmitEditing={() => ref_input.current.focus()}/>
<TextInput
..
ref={ref_input}/>