TextFieldConfiguration constructor

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

Implementation

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