Opens the standard Android date picker dialog.
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 defaultminDate (Date or timestamp in milliseconds) - minimum date that can be selectedmaxDate (Date object or timestamp in milliseconds) - maximum date that can be selectedmode (enum('calendar', 'spinner', 'default')) - To set the date-picker mode to calendar/spinner/defaultReturns a Promise which will be invoked an object containing action, year, month (0-11),
day if the user picked a date. If the user dismissed the dialog, the Promise will
still be resolved with action being DatePickerAndroid.dismissedAction and all the other keys
being undefined. Always check whether the action before reading the values.
Note the native date picker dialog has some UI glitches on Android 4 and lower
when using the minDate and maxDate options.
A date has been selected.
The dialog has been dismissed.
Improve this page by sending a pull request!