const lastNameRef = useRef();
// Your other code
<TextInput
placeholder="First Name"
returnKeyType="next"
onSubmitEditing={() => {
lastNameRef.current.focus();
}}
blurOnSubmit={false}
/>
<TextInput placeholder="Last Name" ref={lastNameRef} onSubmitEditing={() => {
// Execute code to update users name
}}/>;