Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
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, 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.
npm install react-native-picker-select
Component | React |
---|---|
>= 3.0.0 | >= 16.3 |
< 3.0.0 | < 16.3 |
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 value 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 |
style | object | Style overrides for most parts of the component. More details below. | 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 |
hideIcon | boolean | Hides the floating downward arrow on the right side of the input box | N | iOS |
onUpArrow / onDownArrow | function | _ Presence enables the corresponding arrow _ Closes the picker * Calls the callback provided | 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 |
inputIOS
to style the inputviewContainer
, icon
, done
, modalViewTop
, modalViewMiddle
, modalViewBottom
, and placeholderColor
underline
inputAndroid
viewContainer
and placeholderColor
This component has been tested on React Native v0.51 - v0.55
<select>
react-native-picker-select is MIT licensed
FAQs
A Picker component for React Native which emulates the native <select> interfaces for each platform
The npm package react-native-picker-select receives a total of 95,107 weekly downloads. As such, react-native-picker-select popularity was classified as popular.
We found that react-native-picker-select demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 2 open source maintainers 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.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.