showDatePicker static method
Future
showDatePicker(
- BuildContext context, {
- bool showTitleActions = true,
- DateTime? minTime,
- DateTime? maxTime,
- DateChangedCallback? onChanged,
- DateChangedCallback? onConfirm,
- dynamic locale = LocaleType.zh,
- DateTime? currentTime,
- dynamic theme,
Display date picker bottom sheet.
Implementation
static Future showDatePicker(
BuildContext context, {
bool showTitleActions: true,
DateTime? minTime,
DateTime? maxTime,
DateChangedCallback? onChanged,
DateChangedCallback? onConfirm,
locale: LocaleType.zh,
DateTime? currentTime,
DatePickerTheme? theme,
}) {
return Navigator.push(
context,
new _DatePickerRoute(
showTitleActions: showTitleActions,
onChanged: onChanged,
onConfirm: onConfirm,
locale: locale,
theme: theme,
barrierLabel:
MaterialLocalizations.of(context).modalBarrierDismissLabel,
pickerModel: DatePickerModel(
currentTime: currentTime,
maxTime: maxTime,
minTime: minTime,
locale: locale)));
}