@miidx/rn-simple-date-time-picker
v0.9.11
Published
Date time picker for ios and android
Readme
rn-simple-date-time-picker
Usage
<SimpleDateTimePicker
animationType="fade"
label="Due Time"
onDateSelected={(value) => this.setState({ dueTime: value }) }
/>Properties
Name | Description | Type | Required | Default Value
:---------------------|:------------------------------------------- |:----------|:--------:|:-------------
animationType | Animation type when opening drop down. fade or sliede (IOS Only) | String | | fade
label | Picker label | String | |
error | Error message to be shown | String | |
disabled | Set the control to disabled mode | boolean | | false
cancelCaption | Caption for cancel button | String | | Cancel
okCaption | Caption for OK button | String | | OK
enabledColor | Color for the control when in enabled mode | String | | #2f2f2f
disabledColor | Color for the control when in disabled mode | String | | #8C8C8C
format | Format to display selected date/time. See moment.js format | String | | ISO 8601 format
mode | date or datetime | String | | datetime
selectedDate | Set selected date/time value in ISO 8601 format | string | |
initialDateSelection | When selectedDate is empty and user tap the control, pre-selected date/time will be set to this props. The date/time value is in ISO 8601 format | string | |
onDateTimeSelected | Callback when user select a date/time | function | |
