Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR TYPESCRIPT

Text input detect return key react native



<TextInput style={[styles.textInput]}
  placeholder='Dummy Text'
  placeholderTextColor='#bbb'
  onChange={(event) => {
    this.searchChange(event.nativeEvent.text)
  }}
  returnKeyType='search'
  autoFocus={true}
  value={ this.props.searchName }
  selectionColor={colors.orangeColor}
  onSubmitEditing={this.searchSubmit}
  clearButtonMode="while-editing"
/>
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #Text #input #detect #return #key #react #native
ADD COMMENT
Topic
Name
3+2 =