react-native-picker-select
Advanced tools
Comparing version 6.3.0 to 6.3.1
@@ -0,1 +1,9 @@ | ||
### 6.3.1 | ||
##### Bugfix | ||
- Fix Done button on iPad (#209) | ||
--- | ||
### 6.3.0 | ||
@@ -2,0 +10,0 @@ |
{ | ||
"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: { |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
41018
557
105