I have a TextInput which I have enabled multiline as true. Thing is the Keyboard won\'t hide after Return is pressed. It goes to a new line. So I was h
TextInput
multiline
What I used is onSubmitEditing props. e.g.
onSubmitEditing
{ this.searchChange(event.nativeEvent.text) }} returnKeyType='search' autoFocus={true} value={ this.props.searchName } selectionColor={colors.orangeColor} onSubmitEditing={this.searchSubmit} clearButtonMode="while-editing" />