Address comments (#11620)

This commit is contained in:
xster 2017-08-31 02:20:28 -07:00 committed by GitHub
parent bb4f4070f9
commit 0323f2ddd2

View File

@ -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';
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);
/// ///
/// 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:
/// ///