Guest User

Untitled

a guest
Jan 24th, 2019
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. <TextInput
  2. placeholder = "FirstTextInput"
  3. returnKeyType = { "next" }
  4. onSubmitEditing={() => { this.secondTextInput.focus(); }}
  5. blurOnSubmit={false}
  6. />
  7.  
  8. <TextInput
  9. ref={(input) => { this.secondTextInput = input; }}
  10. placeholder = "secondTextInput"
  11. />
Add Comment
Please, Sign In to add comment