Commit 5ef573a8 authored by xwenliang's avatar xwenliang

readme

parent e2b20005
...@@ -22,14 +22,13 @@ Needs react-native >= 0.14.2 ...@@ -22,14 +22,13 @@ Needs react-native >= 0.14.2
###Documentation ###Documentation
####Props ####Props
- <b>style</b> style of picker - <b>style</b> style of picker, you can set width and height of picker in this prop
- <b>pickerBtnText</b> string, tool bar's confirm btn text - <b>pickerBtnText</b> string, tool bar's confirm btn text
- <b>pickerCancelBtnText</b> string, tool bar's cancel ben text - <b>pickerCancelBtnText</b> string, tool bar's cancel ben text
- <b>pickerBtnStyle</b> textStylePropType, tool bar's btn style - <b>pickerBtnStyle</b> textStylePropType, tool bar's btn style
- <b>pickerToolBarStyle</b> viewStylePropType, tool bar's style - <b>pickerToolBarStyle</b> viewStylePropType, tool bar's style
- <b>pickerWidth</b> number, width of picker
- <b>pickerHeight</b> number, height of picker
- <b>showDuration</b> number, animation of picker - <b>showDuration</b> number, animation of picker
- <b>showMask</b> boolean, default to be false, cancel the picker by tapping in the rest of the screen support when setted to be true
- <b>pickerTitle</b> string, title of picker - <b>pickerTitle</b> string, title of picker
- <b>pickerTitleStyle</b> textStylePropType, style of title - <b>pickerTitleStyle</b> textStylePropType, style of title
- <b>pickerData</b> array - <b>pickerData</b> array
...@@ -58,8 +57,11 @@ Needs react-native >= 0.14.2 ...@@ -58,8 +57,11 @@ Needs react-native >= 0.14.2
import Picker from 'react-native-picker' import Picker from 'react-native-picker'
<Picker <Picker
pickerHeight={300} style={{
height: 300
}},
showDuration={300} showDuration={300}
showMask={true}
pickerData={}//picker`s value List pickerData={}//picker`s value List
selectedValue={}//default to be selected value selectedValue={}//default to be selected value
onPickerDone={}//when confirm your choice onPickerDone={}//when confirm your choice
......
{ {
"name": "react-native-picker", "name": "react-native-picker",
"version": "2.0.0", "version": "2.0.1",
"description": "react-native-picker", "description": "react-native-picker",
"main": "index.js", "main": "index.js",
"scripts": { "scripts": {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment