Unverified Commit 0e795c93 authored by LongCatIsLooong's avatar LongCatIsLooong Committed by GitHub

Improve CupertinoDatePicker docs (#57534)

parent 97b7e155
...@@ -211,15 +211,17 @@ class CupertinoDatePicker extends StatefulWidget { ...@@ -211,15 +211,17 @@ class CupertinoDatePicker extends StatefulWidget {
/// the intervals set in [minimumDate], [maximumDate], [minimumYear], and /// the intervals set in [minimumDate], [maximumDate], [minimumYear], and
/// [maximumYear]. /// [maximumYear].
/// ///
/// [minimumDate] is the minimum [DateTime] that the picker can be scrolled to. /// [minimumDate] is the minimum selectable [DateTime] of the picker. When set
/// Null if there's no limit. In [CupertinoDatePickerMode.time] mode, if the /// to null, the picker does not limit the minimum [DateTime] the user can pick.
/// date part of [initialDateTime] is after that of the [minimumDate], [minimumDate] /// In [CupertinoDatePickerMode.time] mode, [minimumDate] should typically be
/// has no effect. /// on the same date as [initialDateTime], as the picker will not limit the
/// minimum time the user can pick if it's set to a date earlier than that.
/// ///
/// [maximumDate] is the maximum [DateTime] that the picker can be scrolled to. /// [maximumDate] is the maximum selectable [DateTime] of the picker. When set
/// Null if there's no limit. In [CupertinoDatePickerMode.time] mode, if the /// to null, the picker does not limit the maximum [DateTime] the user can pick.
/// date part of [initialDateTime] is before that of the [maximumDate], [maximumDate] /// In [CupertinoDatePickerMode.time] mode, [maximumDate] should typically be
/// has no effect. /// on the same date as [initialDateTime], as the picker will not limit the
/// maximum time the user can pick if it's set to a date later than that.
/// ///
/// [minimumYear] is the minimum year that the picker can be scrolled to in /// [minimumYear] is the minimum year that the picker can be scrolled to in
/// [CupertinoDatePickerMode.date] mode. Defaults to 1 and must not be null. /// [CupertinoDatePickerMode.date] mode. Defaults to 1 and must not be null.
...@@ -296,12 +298,34 @@ class CupertinoDatePicker extends StatefulWidget { ...@@ -296,12 +298,34 @@ class CupertinoDatePicker extends StatefulWidget {
/// selected date time. /// selected date time.
final DateTime initialDateTime; final DateTime initialDateTime;
/// Minimum date that the picker can be scrolled to in [CupertinoDatePickerMode.date] /// The minimum selectable date that the picker can settle on.
/// and [CupertinoDatePickerMode.dateAndTime] mode. Null if there's no limit. ///
/// When non-null, the user can still scroll the picker to [DateTime]s earlier
/// than [minimumDate], but the [onDateChangeCallback] will not be called on
/// these [DateTime]s. Once let go, the picker will scroll back to [minimumDate].
///
/// In [CupertinoDatePickerMode.time] mode, a time becomes unselectable if the
/// [DateTime] produced by combining that particular time and the date part of
/// [initialDateTime] is earlier than [minimumDate]. So typically [minimumDate]
/// needs to be set to a [DateTime] that is on the same date as [initialDateTime].
///
/// Defaults to null. When set to null, the picker does not impose a limit on
/// the earliest [DateTime] the user can select.
final DateTime minimumDate; final DateTime minimumDate;
/// Maximum date that the picker can be scrolled to in [CupertinoDatePickerMode.date] /// The maximum selectable date that the picker can settle on.
/// and [CupertinoDatePickerMode.dateAndTime] mode. Null if there's no limit. ///
/// When non-null, the user can still scroll the picker to [DateTime]s later
/// than [maximumDate], but the [onDateChangeCallback] will not be called on
/// these [DateTime]s. Once let go, the picker will scroll back to [maximumDate].
///
/// In [CupertinoDatePickerMode.time] mode, a time becomes unselectable if the
/// [DateTime] produced by combining that particular time and the date part of
/// [initialDateTime] is later than [maximumDate]. So typically [maximumDate]
/// needs to be set to a [DateTime] that is on the same date as [initialDateTime].
///
/// Defaults to null. When set to null, the picker does not impose a limit on
/// the latest [DateTime] the user can select.
final DateTime maximumDate; final DateTime maximumDate;
/// Minimum year that the picker can be scrolled to in /// Minimum year that the picker can be scrolled to in
...@@ -319,9 +343,9 @@ class CupertinoDatePicker extends StatefulWidget { ...@@ -319,9 +343,9 @@ class CupertinoDatePicker extends StatefulWidget {
/// Whether to use 24 hour format. Defaults to false. /// Whether to use 24 hour format. Defaults to false.
final bool use24hFormat; final bool use24hFormat;
/// Callback called when the selected date and/or time changes. If the new selected /// Callback called when the selected date and/or time changes. If the new
/// [DateTime] is not valid, or is not in the [minimumDate] through [maximumDate] /// selected [DateTime] is not valid, or is not in the [minimumDate] through
/// range, this callback will not be called. /// [maximumDate] range, this callback will not be called.
/// ///
/// Must not be null. /// Must not be null.
final ValueChanged<DateTime> onDateTimeChanged; final ValueChanged<DateTime> onDateTimeChanged;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment