taskrabbit / ReactNativeSampleApp

Example app in React Native: sort of like twitter/tumblr
MIT License
930 stars 321 forks source link

Fix enter key for username field #7

Closed jrichardlai closed 8 years ago

jrichardlai commented 8 years ago

Was crashing

bleonard commented 8 years ago

the goal is for TextInput to act like the "real" one. maybe add something like this to TextInput:

  focus() {
    return this.refs.input.focus();
  }