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