react-native-picker-actionsheet
v2.0.0
Published
A picker like ActionSheet component which can be used in iOS & Android . Use Animated .
Downloads
21
Maintainers
Readme
react-native-picker-actionsheet
Install
npm install react-native-picker-actionsheet --save
Usage
import PickerActionSheet from 'react-native-picker-actionsheet';
<PickerActionSheet />
Example
Properties
| Prop | Default | Required | Description | |:------------|:----------------:| :---------------:|:-----------------------------------------------------------------------| | show | false | yes | Controller whether or not show it | | height | 120 | yes | The height of the container,you have to change it for your requirement | | title | '' | no | The title text of the container | | titleRight | null | no | The compoment on the right hand of title | | data | [] | no | The data you give users to picker | | renderItem | (item,index)=>{} | no | Function that shows data | | Footer | React.node | no | Node that shows footer | | onCancel | ()=>{} | no | Function that is called when user cancels it | | onSubmit | (text)=>{} | no | Function that is called when user submits it | | cancelText | 'cancel' | no | The string that is displayed on the cancel button | | submitText | 'submit' | no | The string that is displayed on the submit button | | shadowClick | 'submit' | no | The string that is 'cancel' or 'submit' when shadow is clicked |