Commit 0323f2dd authored by xster's avatar xster Committed by GitHub

Address comments (#11620)

parent bb4f4070
...@@ -27,8 +27,10 @@ import 'material_localizations.dart'; ...@@ -27,8 +27,10 @@ import 'material_localizations.dart';
import 'theme.dart'; import 'theme.dart';
import 'typography.dart'; import 'typography.dart';
/// Initial display mode of the date picker dialog.
///
/// 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. /// monthly calendar initially in the dialog shown by calling [showDatePicker].
/// ///
/// Also see: /// Also see:
/// ///
...@@ -36,6 +38,7 @@ import 'typography.dart'; ...@@ -36,6 +38,7 @@ import 'typography.dart';
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,
/// Show a date picker UI for choosing a year. /// Show a date picker UI for choosing a year.
year, year,
} }
...@@ -852,7 +855,7 @@ typedef bool SelectableDayPredicate(DateTime day); ...@@ -852,7 +855,7 @@ typedef bool SelectableDayPredicate(DateTime day);
/// ///
/// An optional [initialDatePickerMode] argument can be used to display the /// An optional [initialDatePickerMode] argument can be used to display the
/// date picker initially in the year or month+day picker mode. It defaults /// date picker initially in the year or month+day picker mode. It defaults
/// to month+day, but must not be null. /// to month+day, and must not be null.
/// ///
/// See also: /// See also:
/// ///
......
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