Get in touch
or send us a question?
CONTACT

React-native TextInput set focus after render

componentDidMount() {
this.nameFocus .focus();
}
<TextInput
ref={(input) => { this.nameFocus = input; }}
/>