Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
@adrianso/react-native-picker-select
Advanced tools
A Picker component for React Native which emulates the native <select> interfaces for each platform
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.
npm install react-native-picker-select
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' },
]}
/>
);
};
Component | React |
---|---|
>= 3.0.0 | >= 16.3 |
< 3.0.0 | < 16.3 |
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'} - The label and the value are required - The key and color are optional - The key will be set to the label if not included - The value can be any data type | 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. | 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 |
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 |
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 |
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. | boolean |
doneText iOS only | "Done" default text on the modal. Can be overwritten here | string |
onUpArrow / onDownArrow iOS only | Presence enables the corresponding arrow - Closes the picker - Calls the callback provided | function |
onDonePress iOS only | Callback when the 'Done' button is pressed | function |
onOpen / onClose iOS only | Callback triggered right before the opening or closing of the picker | function |
modalProps iOS only | Additional props to pass to the Modal (some props are used in core functionality so use this carefully) | object |
All properties mentioned below must be nested under the style
prop. Examples of different styling options can be found on the example snack.
inputIOS
.inputIOSContainer
, placeholder
, viewContainer
, chevronContainer
, chevron
, chevronUp
, chevronDown
, chevronActive
, done
, modalViewTop
, modalViewMiddle
, and modalViewBottom
inputAndroid
.useNativeAndroidPickerStyle
to false, the component will allow a few other style objects: inputAndroidContainer
, placeholder
, and inputAndroid
headlessAndroidContainer
and viewContainer
Icon
prop - it will be rendered with { position: 'absolute', right: 0 }
applied to its wrapping container. You can modify these values and add additional spacing to position the icon as needed by modifying iconContainer
. You'll probably also want to add some paddingRight
to your input styling to avoid any longer text appearing behind the icon.This component has been tested on React Native v0.51 - v0.59
react-native-picker-select is MIT licensed and built with :heart: in Austin, TX by the team at LawnStarter
FAQs
A Picker component for React Native which emulates the native <select> interfaces for each platform
The npm package @adrianso/react-native-picker-select receives a total of 8 weekly downloads. As such, @adrianso/react-native-picker-select popularity was classified as not popular.
We found that @adrianso/react-native-picker-select demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
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.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.