Unverified Commit ee3571c9 authored by Hans Muller's avatar Hans Muller Committed by GitHub

Update DayPicker,DatePicker doc "see also" sections (#25573)

parent 3d8aec2b
...@@ -29,9 +29,10 @@ import 'theme.dart'; ...@@ -29,9 +29,10 @@ import 'theme.dart';
/// Date picker UI mode for either showing a list of available years or a /// Date picker UI mode for either showing a list of available years or a
/// monthly calendar initially in the dialog shown by calling [showDatePicker]. /// monthly calendar initially in the dialog shown by calling [showDatePicker].
/// ///
/// Also see: /// See also:
/// ///
/// * <https://material.io/guidelines/components/pickers.html#pickers-date-pickers> /// * [showDatePicker], which shows a dialog that contains a material design
/// date picker.
enum DatePickerMode { enum DatePickerMode {
/// Show a date picker UI for choosing a month and day. /// Show a date picker UI for choosing a month and day.
day, day,
...@@ -232,8 +233,10 @@ const _DayPickerGridDelegate _kDayPickerGridDelegate = _DayPickerGridDelegate(); ...@@ -232,8 +233,10 @@ const _DayPickerGridDelegate _kDayPickerGridDelegate = _DayPickerGridDelegate();
/// ///
/// See also: /// See also:
/// ///
/// * [showDatePicker]. /// * [showDatePicker], which shows a dialog that contains a material design
/// * <https://material.google.com/components/pickers.html#pickers-date-pickers> /// date picker.
/// * [showTimePicker], which shows a dialog that contains a material design
/// time picker.
class DayPicker extends StatelessWidget { class DayPicker extends StatelessWidget {
/// Creates a day picker. /// Creates a day picker.
/// ///
...@@ -483,8 +486,10 @@ class DayPicker extends StatelessWidget { ...@@ -483,8 +486,10 @@ class DayPicker extends StatelessWidget {
/// ///
/// See also: /// See also:
/// ///
/// * [showDatePicker] /// * [showDatePicker], which shows a dialog that contains a material design
/// * <https://material.google.com/components/pickers.html#pickers-date-pickers> /// date picker.
/// * [showTimePicker], which shows a dialog that contains a material design
/// time picker.
class MonthPicker extends StatefulWidget { class MonthPicker extends StatefulWidget {
/// Creates a month picker. /// Creates a month picker.
/// ///
...@@ -736,8 +741,10 @@ class _MonthPickerSortKey extends OrdinalSortKey { ...@@ -736,8 +741,10 @@ class _MonthPickerSortKey extends OrdinalSortKey {
/// ///
/// See also: /// See also:
/// ///
/// * [showDatePicker] /// * [showDatePicker], which shows a dialog that contains a material design
/// * <https://material.google.com/components/pickers.html#pickers-date-pickers> /// date picker.
/// * [showTimePicker], which shows a dialog that contains a material design
/// time picker.
class YearPicker extends StatefulWidget { class YearPicker extends StatefulWidget {
/// Creates a year picker. /// Creates a year picker.
/// ///
...@@ -1065,8 +1072,14 @@ typedef SelectableDayPredicate = bool Function(DateTime day); ...@@ -1065,8 +1072,14 @@ typedef SelectableDayPredicate = bool Function(DateTime day);
/// ///
/// See also: /// See also:
/// ///
/// * [showTimePicker] /// * [showTimePicker], which shows a dialog that contains a material design
/// * <https://material.google.com/components/pickers.html#pickers-date-pickers> /// time picker.
/// * [DayPicker], which displays the days of a given month and allows
/// choosing a day.
/// * [MonthPicker], which displays a scrollable list of months to allow
/// picking a month.
/// * [YearPicker], which displays a scrollable list of years to allow picking
/// a year.
Future<DateTime> showDatePicker({ Future<DateTime> showDatePicker({
@required BuildContext context, @required BuildContext context,
@required DateTime initialDate, @required DateTime initialDate,
......
...@@ -1665,8 +1665,8 @@ class _TimePickerDialogState extends State<_TimePickerDialog> { ...@@ -1665,8 +1665,8 @@ class _TimePickerDialogState extends State<_TimePickerDialog> {
/// ///
/// See also: /// See also:
/// ///
/// * [showDatePicker] /// * [showDatePicker], which shows a dialog that contains a material design
/// * <https://material.google.com/components/pickers.html#pickers-time-pickers> /// date picker.
Future<TimeOfDay> showTimePicker({ Future<TimeOfDay> showTimePicker({
@required BuildContext context, @required BuildContext context,
@required TimeOfDay initialTime @required TimeOfDay initialTime
......
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