0.0.21 • Published 6 years ago

react-native-tag-input v0.0.21

Weekly downloads
417
License
MIT
Repository
github
Last release
6 years ago

React Native Tag Input

alt text

Simple Example

import TagInput from 'react-native-tag-input';

...

<TagInput
  value={this.state.emails}
  onChange={(emails) => this.setState({ emails })}
  labelExtractor={(email) => email}
  text={this.state.text}
  onChangeText={(text) => this.setState({ text })}
/>
Available PropertiesDescription
value(Required) An array of tags, which can be any type, as long as labelExtractor below can extract a string from it
onChange(Required) A handler to be called when array of tags change. The parent should update the value prop when this is called if they want to enable removal of tags
labelExtractor(Required) Function to extract string value for label from item. May also return an element to be shown in place of text, in which case the tagTextColor and tagTextStyle props will be ignored.
text(Required) The text currently being displayed in the TextInput following the list of tags
onChangeText(Required) This callback gets called when the user types in the TextInput. The parent should update the text prop when this is called if they want to enable input. This is also where any parsing to detect new tags should occur
editableIf false, text input is not editable and existing tags cannot be removed. (default is true)
tagColorBackground color of tags
tagTextColorText color of tags
tagContainerStyleStyling override for container surrounding tag text
tagTextStyleStyling override for tag's text component
inputDefaultWidthWidth override for text input's default width when it's empty and showing placeholder
inputColorColor of text input
inputPropsAny misc. TextInput props (autoFocus, placeholder, returnKeyType, etc.)
maxHeightMax height of the tag input on screen (will scroll if max height reached)
onHeightChangeCallback that gets passed the new component height when it changes
scrollViewPropsAny ScrollView props (horizontal, showsHorizontalScrollIndicator, etc.)
0.0.21

6 years ago

0.0.20

6 years ago

0.0.19

6 years ago

0.0.18

7 years ago

0.0.17

7 years ago

0.0.16

7 years ago

0.0.15

7 years ago

0.0.14

7 years ago

0.0.13

7 years ago

0.0.12

8 years ago

0.0.11

8 years ago

0.0.10

8 years ago

0.0.9

8 years ago

0.0.8

8 years ago

0.0.7

8 years ago

0.0.6

8 years ago

0.0.5

8 years ago

0.0.4

8 years ago

0.0.3

8 years ago

0.0.2

8 years ago

0.0.1

8 years ago

0.3.0

8 years ago