Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

A react-native dropdown/picker/selector component for both Android & iOS.

License

NotificationsYou must be signed in to change notification settings

sohobloo/react-native-modal-dropdown

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

npm version

react-native-modal-dropdown

A react-native dropdown/picker/selector component for both Android & iOS.

Features

  • Pure JS.
  • Compatible with both iOS and Android.
  • Auto position. (Won't be covered or clipped by the edge of screen.)
  • Zero configuration. (Options are needed of course or a loading indicator will show.)
  • Highly customizable.
  • Controllable with API by code. (Show/Hide/Select)
  • Change everything into a dropdown list trigger.

Demo

Demo 1Demo 2Demo 3

You can find them in the example.

Update History

v0.7.0

Full update history list

Installation

npm i react-native-modal-dropdown -save

Usage

Basic

Import this module:

importModalDropdownfrom'react-native-modal-dropdown';

Use as a component:

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

Use as a wrapper / container:

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

Customization

Give the style props as your choice:

  • style: Change the style of the button (basic mode) / container (wrapper mode).
  • textStyle: Change the style of text of the button.Invalid in wrapper mode.
  • dropdownStyle: Change the style of dropdown container.

You can also render your option row and row separator by implementrenderRow andrenderSeparator function.

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 adefaultValue to change the init text.
defaultValuestringYesPlease select...Init text of the button.Invalid in wrapper mode.
optionsarrayYesOptions.The dropdown will show a loading indicator ifoptions isnull/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 likewidthheighttopleft andright. Change them to appropriate values that accord with your requirement andmake the new style as the return value of this function.
renderRowfuncYesCustomize render option rows:function(option,index,isSelected)Will render a default row ifnull/undefined.
renderSeparatorfuncYesCustomize render dropdown list separators.Will render a default thin gray line ifnull/undefined.
renderButtonTextfuncYesUse this to extract and return text from option object. This text will show on button after option selected.Invalid in wrapper mode.
onDropdownWillShowfuncYesTrigger when dropdown will show by touching the button.Returnfalse can cancel the event.
onDropdownWillHidefuncYesTrigger when dropdown will hide by touching the button.Returnfalse can cancel the event.
onSelectfuncYesTrigger when option row touched with selectedindex andvalue.Returnfalse can cancel the event.
accessibleboolYestrueSet accessibility of dropdown modal and dropdown rows
keyboardShouldPersistTapsenum('always', 'never', 'handled')Yes'never'See react-nativeScrollView props

Methods

MethodDescription
show()Show the dropdown.Won't triggeronDropdownWillShow.
hide()Hide the dropdown.Won't triggeronDropdownWillHide.
select(idx)Select the specified option of theidx. Select-1 will reset it to displaydefaultValue.Won't triggeronSelect.

Next version

Any suggestion is welcome.

About

A react-native dropdown/picker/selector component for both Android & iOS.

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Contributors13


[8]ページ先頭

©2009-2025 Movatter.jp