Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

react-native-picker-select

Package Overview
Dependencies
Maintainers
1
Versions
61
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-native-picker-select - npm Package Compare versions

Comparing version 6.3.0 to 6.3.1

8

CHANGELOG.md

@@ -0,1 +1,9 @@

### 6.3.1
##### Bugfix
- Fix Done button on iPad (#209)
---
### 6.3.0

@@ -2,0 +10,0 @@

2

package.json
{
"name": "react-native-picker-select",
"version": "6.3.0",
"version": "6.3.1",
"description": "A Picker component for React Native which emulates the native <select> interfaces for each platform",

@@ -5,0 +5,0 @@ "license": "MIT",

@@ -26,2 +26,21 @@ # react-native-picker-select

### Basic Usage
```js
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

@@ -28,0 +47,0 @@

@@ -540,2 +540,3 @@ import React, { PureComponent } from 'react';

borderTopColor: '#919498',
zIndex: 2,
},

@@ -542,0 +543,0 @@ chevronContainer: {

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc