FSelectSearchFieldProperties constructor

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

Implementation

const FSelectSearchFieldProperties({
  this.controller,
  this.hint,
  this.magnifierConfiguration,
  this.keyboardType,
  this.textInputAction,
  this.textCapitalization = TextCapitalization.none,
  this.textAlign = TextAlign.start,
  this.textAlignVertical,
  this.textDirection,
  this.autofocus = false,
  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 = 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 = _clearable,
});