altFontFamily | No | (String) Font family for searchInputPlaceholderText |
canAddItems | No | (Boolean) Defaults to "false". This allows a user to add items to the list of items provided. You need to handle adding the new items in the onAddItem function prop. Items may be added with the return key on the native keyboard. |
displayKey | No | (String) Defaults to "name". This string will be used to select the key to display the objects in the items array |
fixedHeight | No | (Boolean) Defaults to false. Specifies if select dropdown take height of content or a fixed height with a scrollBar (There is an issue with this behavior when component is nested in a ScrollView in which scroll event will only be dispatched to parent ScrollView and select component won't be scrollable). See this issue for more info. |
filterMethod | No | (String) Defaults to "partial". options: ["partial", "full"] Choose the logic on how the system filters items based on searchTerm. partial: checks all individual words and if at least one word matches will include that item. full: checks to ensure the item contains the full substring of searchterm in order minus any leading or trailing spaces. |
flatListProps | No | (Object) Properties for the FlatList. Pass any property that is required on the FlatList of the dropdown menu |
fontFamily | No | (String) Custom font family to be used in component (affects all text except searchInputPlaceholderText described above) |
fontSize | No | (Number) Font size for selected item name displayed as label for multiselect |
hideDropdown | No | (Boolean) Defaults false. Hide dropdown menu with a cancel, and use arrow-back |
hideSubmitButton | No | (Boolean) Defaults to false. Hide submit button from dropdown, and rather use arrow-button in search field |
hideTags | No | (Boolean) Defaults to false. Hide tokenized selected items, in case selected items are to be shown somewhere else in view (check below for more info) |
iconSearch | No | (Element, Object, boolean, Function) Element or functional component to change the Search Icon |
itemFontFamily | No | (String) Font family for each non-selected item in multi-select drop-down |
itemFontSize | No | (Number) Font size used for each item in the multi-select drop-down |
itemTextColor | No | (String) Text color for each non-selected item in multi-select drop-down |
items | Yes | (Array, control prop) List of items to display in the multi-select component. JavaScript Array of objects. Each object must contain a name and unique identifier (Check sample above) |
noItemsText | No | (String) Text that replace default "no items to display" |
onAddItem | No | (Function) JavaScript function passed in as an argument. The function is called everytime a new item is added, and receives the entire list of items. Here you should ensure that the new items are added to your provided list of items in addition to any other consequences of new items being added. |
onChangeInput | No | (Function) JavaScript function passed in as an argument. The function is called everytime TextInput is changed with the value. |
onClearSelector | No | (Function) JavaScript function passeed in as an argument. The function is called everytime back button is pressed |
onSelectedItemsChange | Yes | (Function) JavaScript function passed in as an argument. The function is to be defined with an argument (selectedItems). Triggered when Submit button is clicked (for multi select) or item is clicked (for single select). (Check sample above) |
onToggleList | No | (Function) JavaScript function passed in as an argument. The function is called everytime the multiselect component is pressed |
searchInputPlaceholderText | No | (String) Placeholder text displayed in multi-select filter input |
searchInputStyle | No | (Object) Style object for multi-select input element |
selectText | No | (String) Text displayed in main component |
selectedItemFontFamily | No | (String) Font family for each selected item in multi-select drop-down |
selectedItemIconColor | No | (String) Color for selected check icon for each selected item in multi-select drop-down |
selectedItemTextColor | No | (String) Text color for each selected item in multi-select drop-down |
single | No | (Boolean) Toggles select component between single option and multi option |
styleDropdownMenu | No | (Style) Style the view of the dropdown menu |
styleDropdownMenuSubsection | No | (Style) Style the inner view of the dropdown menu |
styleInputGroup | No | (Style) Style the Container of the Text Input Group |
styleItemsContainer | No | (Style) Style the Container of the items that are displayed in a list |
styleListContainer | No | (Style) Style the Container of main list. See [this issue] (https://github.com/toystars/react-native-multiple-select/issues/12) |
styleMainWrapper | No | (Style) Style the Main Container of the MultiSelector |
styleRowList | No | (Style) Style the Row that is displayed after you |
styleSelectorContainer | No | (Style) Style the Container of the Selector when user clicks on the dropdown |
styleTextDropdown | No | (Text Style) Style text of the Dropdown |
styleTextDropdownSelected | No | (Text Style) Style text of the Dropdown selected |
styleTextTag | No | (Text Style) Style text of the tag |
styleIndicator | No | (Style) Style the Icon for indicator |
submitButtonColor | No | (String) Background color for submit button |
submitButtonText | No | (String) Text displayed on submit button |
tagBorderColor | No | (String) Border color for each selected item |
tagContainerStyle | No | (Style) Style the container of the tag view |
tagRemoveIconColor | No | (String) Color to be used for the remove icon in selected items list |
tagTextColor | No | (String) Text color for selected items list |
textColor | No | (String) Color for selected item name displayed as label for multiselect |
textInputProps | No | (Object) Properties for the Text Input. Pass any property that is required on the text input |
uniqueKey | Yes | (String) Unique identifier that is part of each item's properties. Used internally as means of identifying each item (Check sample below) |
selectedItems | No | (Array, control prop) List of selected items keys . JavaScript Array of strings, that can be instantiated with the component |
removeSelected | No | (Boolean) Filter selected items from list to be shown in List |