1.2.0 • Published 4 years ago

native-drop-down v1.2.0

Weekly downloads
3
License
MIT
Repository
github
Last release
4 years ago

native-drop-down

A react-native dropdown component for both Android and iOS.

Installation

npm i native-drop-down -S

Usage

Import

import ModalDropdown from 'native-drop-down';

Use as a component:

<ModalDropdown options={['option 1', 'option 2']}/>

Use as a wrapper / container:

<ModalDropdown options={['option 1', 'option 2']}>
  ...
</ModalDropdown>

API

Props

PropTypeOptionalDefaultDescription
disabledboolYesfalsedisable / enable the component.
defaultIndexnumberYes-1Init selected index. -1: None is selected. This only change the highlight of the dropdown row, you have to give a defaultValue to change the init text.
defaultValuestringYesPlease select...Init text of the button. Invalid in wrapper mode.
optionsarrayYesOptions. The dropdown will show a loading indicator if options is null/undefined.
animatedboolYestrueDisable / enable fade animation.
showsVerticalScrollIndicatorboolYestrueShow / hide vertical scroll indicator.
styleobjectYesStyle of the button.
textStyleobjectYesStyle of the button text. Invalid in wrapper mode.
dropdownStyleobjectYesStyle of the dropdown list.
dropdownTextStyleobjectYesStyle of the dropdown option text.
dropdownTextHighlightStyleobjectYesStyle of the dropdown selected option text.
adjustFramefuncYesThis is a callback after the frame of the dropdown have been calculated and before showing. You will receive a style object as argument with some of the props like width height top left and right. Change them to appropriate values that accord with your requirement and make the new style as the return value of this function.
renderRowfuncYesCustomize render option rows. Will render a default row if null/undefined.
renderSeparatorfuncYesCustomize render dropdown list separators. Will render a default thin gray line if null/undefined.
onDropdownWillShowfuncYesTrigger when dropdown will show by touching the button. Return false can cancel the event.
onDropdownWillHidefuncYesTrigger when dropdown will hide by touching the button. Return false can cancel the event.
onSelectfuncYesTrigger when option row touched with selected index and value. Return false can cancel the event.
accessibleboolYestrueSet accessibility of dropdown modal and dropdown rows
keyboardShouldPersistTapsenum('always', 'never', 'handled')Yes'never'See react-native ScrollView props

Methods

MethodDescription
show()Show the dropdown. Won't trigger onDropdownWillShow.
hide()Hide the dropdown. Won't trigger onDropdownWillHide.
select(idx)Select the specified option of the idx. Select -1 will reset it to display defaultValue. Won't trigger onSelect.

License

MIT