npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

rtdropdown

v1.0.0

Published

react-natvie dropdwon menu

Downloads

9

Readme

npm version

rtdropdown

react-native上的dropdown菜单

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

You can find them in the example.

Update History

v1.0.0

第一版,初次提交

Installation

npm i react-native-modal-dropdown -S

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

Prop | Type | Optional | Default | Description ------------------- | -------- | -------- | --------- | ----------- disabled | bool | Yes | false | disable/enable the component. defaultIndex | number | Yes | -1 | Init 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. defaultValue | string | Yes | Please select... | Init text of the button. Invalid in wrapper mode. options | array | Yes | | Options. The dropdown will show a loading indicator if options is null/undefined. style | object | Yes | | Style of the button. textStyle | object | Yes | | Style of the button text. Invalid in wrapper mode. dropdownStyle | object | Yes | | Style of the dropdown list. adjustFrame | func | Yes | | This 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. renderRow | func | Yes | | Customize render option rows. Will render a default row if null/undefined. renderSeparator | func | Yes | | Customize render dropdown list separators. Will render a default thin gray line if null/undefined. onDropdownWillShow| func | Yes | | Trigger when dropdown will show by touching the button. Return false can cancel the event. onDropdownWillHide| func | Yes | | Trigger when dropdown will hide by touching the button. Return false can cancel the event. onSelect | func | Yes | | Trigger when option row touched with selected index and value. Return false can cancel the event. accessible | bool | Yes | true | Set accessibility of dropdown modal and dropdown rows

Methods

Method | Description ----------------- | ----------- 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.