FlutterFormInputDateTime constructor

const FlutterFormInputDateTime(
  1. {required FlutterFormInputController<String> controller,
  2. required FlutterFormDateTimeType inputType,
  3. required DateFormat dateFormat,
  4. required String validationMessage,
  5. InputDecoration? decoration,
  6. TextStyle? style,
  7. Key? key,
  8. Widget? label,
  9. bool showIcon = true,
  10. DateTime? firstDate,
  11. DateTime? lastDate,
  12. DateTime? initialDate,
  13. DateTimeRange? initialDateTimeRange,
  14. TimeOfDay? initialTime,
  15. IconData icon = Icons.calendar_today,
  16. String? initialValue,
  17. void onChanged(
    1. String?
    )?,
  18. void onSaved(
    1. String?
    )?,
  19. String? validator(
    1. String?
    )?,
  20. AutovalidateMode autovalidateMode = AutovalidateMode.disabled,
  21. TimePickerEntryMode timePickerEntryMode = TimePickerEntryMode.dial,
  22. bool enabled = true,
  23. bool onTapEnabled = true}
)

Creates a FlutterFormInputDateTime.

The controller, inputType, dateFormat are required parameters. The label parameter specifies the label of the input field. The showIcon parameter determines whether to show an icon with the input field. The firstDate and lastDate parameters specify the range of selectable dates. The initialDate parameter specifies the initial date for the input field. The initialDateTimeRange parameter specifies the initial date time range for the input field. The icon parameter specifies the icon to show with the input field. The enabled parameter specifies whether the input field is enabled. The onTapEnabled parameter specifies whether tapping on the input field is enabled.

Implementation

const FlutterFormInputDateTime({
  required super.controller,
  required this.inputType,
  required this.dateFormat,
  required this.validationMessage,
  this.decoration,
  this.style,
  super.key,
  this.label,
  this.showIcon = true,
  this.firstDate,
  this.lastDate,
  this.initialDate,
  this.initialDateTimeRange,
  this.initialTime,
  this.icon = Icons.calendar_today,
  this.initialValue,
  this.onChanged,
  this.onSaved,
  this.validator,
  this.autovalidateMode = AutovalidateMode.disabled,
  this.timePickerEntryMode = TimePickerEntryMode.dial,
  this.enabled = true,
  this.onTapEnabled = true,
});