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 🙏

© 2026 – Pkg Stats / Ryan Hefner

react-native-picker-select-enhanced

v4.4.5

Published

A Picker component for React Native which emulates the native <select> interfaces for each platform

Readme

react-native-picker-select

npm version npm downloads Test Coverage CircleCI

A Picker component for React Native which emulates the native <select> interfaces for iOS and Android

For iOS, we are wrapping a TextInput component. You can pass down your custom styling to match your other inputs.

For Android, we are using the native Picker component, but adding a pseudo-underline to emulate a typical TextInput. Additional styling can be passed down also to further customize the appearance.

For either platform, you can alternatively pass down a child element that will be wrapped in a touchable area, triggering the picker.

iOS Example Android Example

Examples

Run example

Getting Started

Installing

npm install react-native-picker-select

Versioning

| Component | React | | --------- | ------- | | >= 3.0.0 | >= 16.3 | | < 3.0.0 | < 16.3 |

Props

| Name | Type | Description | Required? | iOS / Android | | ----------------------- | -------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------- | ------------- | | onValueChange | function | Callback which returns value, index | Y | Both | | items | array | _ The items for the component to render. Each item should be in the following format:{label: 'Orange',value: 'orange',key: 'orange', color: 'orange'}_ The label and the value are required, but the key will be based upon the label if it isn't included* The value can be any data type. The color is optional. | Y | Both | | placeholder | object | _ An override for the default placeholder object with a label of Select an item... and a value of null_ An empty object can be used if you'd like to disable the placeholder entirely | N | Both | | disabled | boolean | Disables interaction with the component | N | Both | | value | any | Will attempt to locate a matching item from the items array by checking each item's value property. If found, it will update the component to show that item as selected. If the value is not found, it will default to the first item. | N | Both | | itemKey | string, number | Will attempt to locate a matching item from the items array by checking each item's key property. If found, it will update the component to show that item as selected. If the key is not found, it will attempt to find a matching item by value as above. | N | Both | | style | object | Style overrides for most parts of the component. More details below. | N | Both | | hideIcon | boolean | Hides the floating downward arrow on the right side of the input box | N | Both | | placeholderTextColor | color | Overrides the default placeholder color shown | N | Both | | hideDoneBar | boolean | Hides the bar with tabbing arrows and Done link to exit the modal. While this is typical on select elements on the web, the interface guidelines does not include it. | N | iOS | | onUpArrow / onDownArrow | function | _ Presence enables the corresponding arrow_ Closes the picker* Calls the callback provided | N | iOS | | onDonePress | function | Callback when the 'done' button is pressed | N | iOS | | mode | string | Specifies how to display the selection items when the user taps on the picker. 'dialog': Show a modal dialog. This is the default. 'dropdown': Shows a dropdown anchored to the picker view. | N | Android |

Styling

  • iOS
    • The component wraps a TextInput without styling. In the style prop, pass a style object named inputIOS to style the input
    • Alternatively, you can pass children (such as a custom button or input) for the component to wrap
    • Other styles that can be modified for iOS are named viewContainer, icon, chevron, chevronUp, chevronDown, chevronActive, done, modalViewTop, modalViewMiddle, and modalViewBottom
  • Android
    • The default Picker component acts similiarly to a TextInput until it is tapped, although it does not include an underline
    • We emulate a typical underline, which can be modified with a style object named underline
    • The main input can be modified with the style object named inputAndroid
    • Alternatively, you can pass children (such as a custom button or input) for the component to wrap
    • Other styles that can be modified for Android are named viewContainer

Testing

This component has been tested on React Native v0.51 - v0.55

BrowserStack

License

react-native-picker-select is MIT licensed