react-native/docs/datepickerios.md
Héctor Ramos e11d496e9d Additional markdown adjustments
Summary:
Follow up to 9ec95673909beac7798f589e0e9821b4225f8fa9
Closes https://github.com/facebook/react-native/pull/16759

Differential Revision: D6285219

Pulled By: hramos

fbshipit-source-id: 7012d257a5a6cff06cb2d94203a9379e4b7e3c4e
2017-11-09 09:55:05 -08:00

2.1 KiB

id title layout category permalink next previous
datepickerios DatePickerIOS docs components docs/datepickerios.html drawerlayoutandroid checkbox

Use DatePickerIOS to render a date/time picker (selector) on iOS. This is a controlled component, so you must hook in to the onDateChange callback and update the date prop in order for the component to update, otherwise the user's change will be reverted immediately to reflect props.date as the source of truth.

Props


Reference

Props

date

The currently selected date.

Type Required
Date Yes

onDateChange

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.

Type Required
function Yes

maximumDate

Maximum date.

Restricts the range of possible date/time values.

Type Required
Date No

minimumDate

Minimum date.

Restricts the range of possible date/time values.

Type Required
Date No

minuteInterval

The interval at which minutes can be selected.

Type Required
enum(1, 2, 3, 4, 5, 6, 10, 12, 15, 20, 30) No

mode

The date picker mode.

Type Required
enum('date', 'time', 'datetime') No

timeZoneOffsetInMinutes

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.

Type Required
number No