Socket
Socket
Sign inDemoInstall

react-native-modal-dropdown-v2

Package Overview
Dependencies
864
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    react-native-modal-dropdown-v2

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


Version published
Weekly downloads
582
decreased by-10.74%
Maintainers
1
Install size
448 kB
Created
Weekly downloads
 

Readme

Source

npm version

react-native-modal-dropdown

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

This is the most up to date fork of https://github.com/sohobloo/react-native-modal-dropdown and will be maintained. A discussion about that can be found here: https://github.com/sohobloo/react-native-modal-dropdown/issues/251

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 1 Demo 2 Demo 3

You can find them in the example.

Update History

v0.7.5

  • latest version, merged some PRs

v0.7.0

Full update history list

Installation

npm i https://github.com/Kishanjvaghela/react-native-modal-dropdown -save

or

yarn add https://github.com/Kishanjvaghela/react-native-modal-dropdown

Usage

Basic

Import this module:

import ModalDropdown from 'react-native-modal-dropdown';

Use as a component:

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

Use as a wrapper / container:

<ModalDropdown options={['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 implement renderRow and renderSeparator 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 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.
isFullWidthboolYesfalseDisable / enable is dropdown render as full width.
showsVerticalScrollIndicatorboolYestrueShow / hide vertical scroll indicator.
styleobjectYesStyle of the button.
textStyleobjectYesStyle of the button text. Invalid in wrapper mode.
defaultTextStyleobjectYesOverried Style of the button text for default value. Invalid in wrapper mode.
dropdownStyleobjectYesStyle of the dropdown list.
dropdownTextStyleobjectYesStyle of the dropdown option text.
dropdownTextHighlightStyleobjectYesStyle of the dropdown selected option text.
dropdownTextPropsobjectYesAdd custom props to the dropdown 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: function(option,index,isSelected) Will render a default row if null/undefined.
renderRowComponentComponentYesTouchableOpacity for iOS and TouchableHighlight for AndroidCustomize the touchable component of the rows
renderRowPropsobjectYesAdd custom props to the touchable component of the rows
renderSeparatorfuncYesCustomize render dropdown list separators. Will render a default thin gray line if null/undefined.
renderButtonTextfuncYesUse this to extract and return text from option object. This text will show on button after option selected. Invalid in wrapper mode.
renderRowTextfuncYesUse this to extract and return text from option object. This text will show on row Invalid in wrapper mode.
renderButtonComponentComponentYesTouchableOpacityCustomize the touchable component of the button
renderRightComponentComponentYesViewCustom component/Image to display on right side as dropdown icon
renderButtonPropsobjectYesAdd custom props to the touchable component of the button
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
multipleSelectboolYesfalseRemove event closing modal when calling onSelect.

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.

Next version

Any suggestion is welcome.

Keywords

FAQs

Last updated on 24 Nov 2020

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc