FlutterFormInputDateTime constructor

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

Implementation

const FlutterFormInputDateTime({
  required this.inputType,
  required this.dateFormat,
  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,
});