DatePickerIOS#minuteInterval

minuteInterval enum(1, 2, 3, 4, 5, 6, 10, 12, 15, 20, 30) The interval at which minutes can be selected.

DatePickerIOS#timeZoneOffsetInMinutes

timeZoneOffsetInMinutes number Timezone offset in minutes. By default, the date picker will use the device's timezone. With this parameter, it is possible to force a certain timezone offset. For instance, to show times in Pacific Standard Time, pass -7 * 60.

DatePickerIOS#minimumDate

minimumDate Date Minimum date. Restricts the range of possible date/time values.

DatePickerIOS#onDateChange

onDateChange function Date change handler. This is called when the user changes the date or time in the UI. The first and only argument is a Date object representing the new date and time.

DatePickerIOS#mode

mode enum('date', 'time', 'datetime') The date picker mode.

DatePickerIOS#date

date Date The currently selected date.

DatePickerAndroid.dismissedAction()

static dismissedAction() The dialog has been dismissed.

DatePickerIOS#maximumDate

maximumDate Date Maximum date. Restricts the range of possible date/time values.

DatePickerAndroid.open()

static open(options) Opens the standard Android date picker dialog. The available keys for the options object are: date (Date object or timestamp in milliseconds) - date to show by default minDate (Date or timestamp in milliseconds) - minimum date that can be selected * maxDate (Date object or timestamp in milliseconds) - minimum date that can be selected Returns a Promise which will be invoked an object containing action, year, month (0-11), day if the user picked a date. If the user dism

DatePickerAndroid.dateSetAction()

static dateSetAction() A date has been selected.