ControlledTimePicker constructor

const ControlledTimePicker({
  1. Key? key,
  2. TimePickerController? controller,
  3. TimeOfDay? initialValue,
  4. ValueChanged<TimeOfDay?>? onChanged,
  5. bool enabled = true,
  6. PromptMode mode = PromptMode.dialog,
  7. Widget? placeholder,
  8. AlignmentGeometry? popoverAlignment,
  9. AlignmentGeometry? popoverAnchorAlignment,
  10. EdgeInsetsGeometry? popoverPadding,
  11. bool? use24HourFormat,
  12. bool showSeconds = false,
  13. Widget? dialogTitle,
})

Implementation

const ControlledTimePicker({
  super.key,
  this.controller,
  this.initialValue,
  this.onChanged,
  this.enabled = true,
  this.mode = PromptMode.dialog,
  this.placeholder,
  this.popoverAlignment,
  this.popoverAnchorAlignment,
  this.popoverPadding,
  this.use24HourFormat,
  this.showSeconds = false,
  this.dialogTitle,
});