TextFieldConfiguration constructor

const TextFieldConfiguration({
  1. EdgeInsetsGeometry? contentPadding,
  2. int? maxLines,
  3. BorderRadius? borderRadius,
  4. String? hintText,
  5. Widget? prefixIcon,
  6. TextStyle? hintStyle,
  7. TextStyle? textStyle,
  8. EdgeInsetsGeometry? padding,
  9. EdgeInsetsGeometry? margin,
  10. int? minLines,
  11. TextInputType? textInputType,
  12. ValueSetter<TypeWriterStatus>? onMessageTyping,
  13. Duration compositionThresholdTime = const Duration(seconds: 1),
  14. List<TextInputFormatter>? inputFormatters,
  15. TextCapitalization? textCapitalization,
  16. bool enabled = true,
  17. double? height,
})

Implementation

const TextFieldConfiguration({
  this.contentPadding,
  this.maxLines,
  this.borderRadius,
  this.hintText,
  this.prefixIcon,
  this.hintStyle,
  this.textStyle,
  this.padding,
  this.margin,
  this.minLines,
  this.textInputType,
  this.onMessageTyping,
  this.compositionThresholdTime = const Duration(seconds: 1),
  this.inputFormatters,
  this.textCapitalization,
  this.enabled = true,
  this.height,
});