FdcTimeEdit constructor

const FdcTimeEdit({
  1. Key? key,
  2. required FdcDataSet dataSet,
  3. required String fieldName,
  4. String? label,
  5. String? hint,
  6. bool? enabled,
  7. bool readOnly = false,
  8. int? focusOrder,
  9. bool tabStop = true,
  10. bool showPicker = false,
  11. InputDecoration? decoration,
  12. FdcEditorThemeData? theme,
  13. FdcEditorInputStyle style = const FdcEditorInputStyle(),
  14. bool autofocus = false,
  15. bool showLabel = true,
  16. bool selectAllOnFocus = false,
  17. FdcErrorIndicatorOptions errorIndicator = const FdcErrorIndicatorOptions(),
  18. FdcFieldFocusCallback<FdcTime>? onEnter,
  19. FdcFieldFocusCallback<FdcTime>? onExit,
  20. FdcFieldValueChangingCallback<FdcTime>? onValueChanging,
  21. FdcFieldValueChangedCallback<FdcTime>? onValueChanged,
  22. FdcFormatSettings? formatSettings,
})

Creates a FdcTimeEdit.

Implementation

const FdcTimeEdit({
  super.key,
  required this.dataSet,
  required this.fieldName,
  this.label,
  this.hint,
  this.enabled,
  this.readOnly = false,
  this.focusOrder,
  this.tabStop = true,
  this.showPicker = false,
  this.decoration,
  this.theme,
  this.style = const FdcEditorInputStyle(),
  this.autofocus = false,
  this.showLabel = true,
  this.selectAllOnFocus = false,
  this.errorIndicator = const FdcErrorIndicatorOptions(),
  this.onEnter,
  this.onExit,
  this.onValueChanging,
  this.onValueChanged,
  this.formatSettings,
});