FSelectSearchFieldProperties constructor

const FSelectSearchFieldProperties({
  1. FTextFieldSizeVariant size = FTextFieldSizeVariant.md,
  2. FTextFieldControl control = const .managed(),
  3. String? hint,
  4. TextMagnifierConfiguration? magnifierConfiguration,
  5. TextInputType? keyboardType,
  6. TextInputAction? textInputAction,
  7. TextCapitalization textCapitalization = .none,
  8. TextAlign textAlign = .start,
  9. TextAlignVertical? textAlignVertical,
  10. TextDirection? textDirection,
  11. bool? autofocus,
  12. bool autocorrect = true,
  13. SmartDashesType? smartDashesType,
  14. SmartQuotesType? smartQuotesType,
  15. bool enableSuggestions = true,
  16. int? minLines,
  17. int? maxLines = 1,
  18. bool readOnly = false,
  19. bool? showCursor,
  20. int? maxLength,
  21. MaxLengthEnforcement? maxLengthEnforcement,
  22. ValueChanged<TextEditingValue>? onChange,
  23. GestureTapCallback? onTap,
  24. bool onTapAlwaysCalled = false,
  25. VoidCallback? onEditingComplete,
  26. ValueChanged<String>? onSubmit,
  27. List<TextInputFormatter>? inputFormatters,
  28. bool enabled = true,
  29. bool? ignorePointers,
  30. bool enableInteractiveSelection = true,
  31. TextSelectionControls? selectionControls,
  32. DragStartBehavior dragStartBehavior = .start,
  33. MouseCursor? mouseCursor,
  34. ScrollPhysics? scrollPhysics,
  35. ScrollController? scrollController,
  36. Iterable<String>? autofillHints,
  37. String? restorationId,
  38. bool stylusHandwritingEnabled = true,
  39. bool enableIMEPersonalizedLearning = true,
  40. ContentInsertionConfiguration? contentInsertionConfiguration,
  41. EditableTextContextMenuBuilder? contextMenuBuilder,
  42. UndoHistoryController? undoController,
  43. SpellCheckConfiguration? spellCheckConfiguration,
  44. FFieldIconBuilder<FTextFieldStyle>? prefixBuilder = defaultIconBuilder,
  45. FFieldIconBuilder<FTextFieldStyle>? suffixBuilder,
  46. bool clearable(
    1. TextEditingValue value
    ) = FTextField.defaultClearable,
})

Implementation

const FSelectSearchFieldProperties({
  this.size = FTextFieldSizeVariant.md,
  this.control = const .managed(),
  this.hint,
  this.magnifierConfiguration,
  this.keyboardType,
  this.textInputAction,
  this.textCapitalization = .none,
  this.textAlign = .start,
  this.textAlignVertical,
  this.textDirection,
  this.autofocus,
  this.autocorrect = true,
  this.smartDashesType,
  this.smartQuotesType,
  this.enableSuggestions = true,
  this.minLines,
  this.maxLines = 1,
  this.readOnly = false,
  this.showCursor,
  this.maxLength,
  this.maxLengthEnforcement,
  this.onChange,
  this.onTap,
  this.onTapAlwaysCalled = false,
  this.onEditingComplete,
  this.onSubmit,
  this.inputFormatters,
  this.enabled = true,
  this.ignorePointers,
  this.enableInteractiveSelection = true,
  this.selectionControls,
  this.dragStartBehavior = .start,
  this.mouseCursor,
  this.scrollPhysics,
  this.scrollController,
  this.autofillHints,
  this.restorationId,
  this.stylusHandwritingEnabled = true,
  this.enableIMEPersonalizedLearning = true,
  this.contentInsertionConfiguration,
  this.contextMenuBuilder,
  this.undoController,
  this.spellCheckConfiguration,
  this.prefixBuilder = defaultIconBuilder,
  this.suffixBuilder,
  this.clearable = FTextField.defaultClearable,
});