MCPcopy
hub / github.com/lawnstarter/react-native-picker-select

github.com/lawnstarter/react-native-picker-select @v9.3.1 sqlite

repository ↗ · DeepWiki ↗ · release v9.3.1 ↗
21 symbols 35 edges 6 files 0 documented · 0%
README

react-native-picker-select

npm version npm downloads Test Coverage build

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

For iOS, by default we are wrapping an unstyled TextInput component. You can then pass down styles to customize it to your needs.

For Android, by default we are using the native Picker component. If you prefer, you can set useNativeAndroidPickerStyle to false, which will also render an unstyled TextInput component. You can then pass down styles to customize it to your needs.

For either platform, you can alternatively pass down a child element of your choice that will be wrapped in a touchable area.

iOS Example Android Example

View examples on snack.expo.io

Getting Started

Installing

This package is built around and depends on @react-native-picker/picker. Please make sure you install it correctly (as seen below in installation steps).

npm install react-native-picker-select

# React Native users
npm install @react-native-picker/picker
npx pod-install

# Expo
expo install @react-native-picker/picker

Basic Usage

import RNPickerSelect from 'react-native-picker-select';

export const Dropdown = () => {
  return (
    <RNPickerSelect
      onValueChange={(value) => console.log(value)}
      items={[
        { label: 'Football', value: 'football' },
        { label: 'Baseball', value: 'baseball' },
        { label: 'Hockey', value: 'hockey' },
      ]}
    />
  );
};

Versioning

Version Notes
>= 8.0.0 Uses @react-native-picker/picker. React Native 0.60 or above. If using Expo, SDK38 or above.
>= 3.0.0 React v16.3 or above.
< 3.0.0 React v16.2 or below.

Props

Name Description Details
onValueChange Callback which returns value, index required

function | | items | The items for the component to render

  • Each item should be in the following format:

{label: 'Orange', value: 'orange', key: 'orange', color: 'orange', inputLabel: 'Orange!', testID: 'e2e-orange'}

  • label and value are required

  • key, color, testID, and inputLabel are optional

  • key will be set to equal label if not included

  • value can be any data type

  • If inputLabel exists, the TextInput will display that value instead of the label | required

array | | placeholder | - 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 | object | | disabled | Disables interaction with the component | boolean | | value | 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. WARNING: do not use this attribute on iOS if you plan to allow the user to modify the value from within the Picker, use itemKey instead. | any | | itemKey | 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. | string, number | | style | Style overrides for most parts of the component.

More details in styling | object | | darkTheme

iOS only | Use the dark theme for the Picker. | boolean | | pickerProps | Additional props to pass to the Picker (some props are used in core functionality so use this carefully) | object | | Icon | Custom icon component to be rendered.

More details in styling | Component | | textInputProps | Additional props to pass to the TextInput (some props are used in core functionality so use this carefully). This is iOS only unless useNativeAndroidPickerStyle={false}. | object | | touchableWrapperProps | Additional props to pass to the touchable wrapping the TextInput (some props are used in core functionality so use this carefully) | object | | onOpen()

                              | Callback triggered right before the opening of the picker

Not supported when useNativeAndroidPickerStyle={true} | function | | useNativeAndroidPickerStyle

Android only | The component defaults to using the native Android Picker in its un-selected state. Setting this flag to false will mimic the default iOS presentation where a tappable TextInput is displayed.

More details in styling | boolean | | fixAndroidTouchableBug

Android only | Experimental flag to fix issue #354 | boolean | | InputAccessoryView

iOS only | Replace the InputAcessoryView section (bar with tabbing arrown and Done button) of the opened picker with your own custom component. Can also return null here to hide completely. While this bar is typical on select elements on the web, the interface guidelines does not include it. View the snack to see examples on how this can be customized. | Component | | doneText

iOS only | "Done" default text on the modal. Can be overwritten here

Extension points exported contracts — how you extend this code

Item (Interface)
(no doc)
index.d.ts
PickerStyle (Interface)
(no doc)
index.d.ts
PickerSelectProps (Interface)
(no doc)
index.d.ts

Core symbols most depended-on inside this repo

noop
called by 0
test/test.js
onValueChange
called by 0
test/test.js
handlePlaceholder
called by 0
src/index.js
getSelectedItem
called by 0
src/index.js
constructor
called by 0
src/index.js
onUpArrow
called by 0
src/index.js
onDownArrow
called by 0
src/index.js
onValueChange
called by 0
src/index.js

Shape

Function 15
Class 3
Interface 3

Languages

TypeScript100%

Modules by API surface

src/index.js14 symbols
index.d.ts5 symbols
test/test.js2 symbols

Dependencies from manifests, versioned

@commitlint/cli19.2.1 · 1×
@react-native-picker/picker2.4.0 · 1×
@types/react-native0.60.22 · 1×
babel-jest23.6.0 · 1×
babel-preset-react-native4.0.1 · 1×
cz-ls-commits1.1.0 · 1×
enzyme3.7.0 · 1×
enzyme-adapter-react-161.7.0 · 1×
enzyme-to-json3.3.5 · 1×
eslint8.2.0 · 1×
eslint-config-airbnb19.0.4 · 1×
eslint-plugin-import2.25.3 · 1×

For agents

$ claude mcp add react-native-picker-select \
  -- python -m otcore.mcp_server <graph>

⬇ download graph artifact