TLTextFieldStyle constructor

const TLTextFieldStyle({
  1. TextStyle? style,
  2. InputDecoration? decoration,
  3. List<TextInputFormatter>? inputFormatters,
  4. bool? enabled,
  5. bool readOnly = false,
  6. TextInputType? keyboardType,
  7. TextInputAction? textInputAction,
  8. int? maxLines,
  9. int? minLines,
  10. int? maxLength,
  11. MaxLengthEnforcement? maxLengthEnforcement,
  12. bool? showCursor,
  13. double cursorWidth = 2,
  14. double? cursorHeight,
  15. Radius? cursorRadius,
  16. Color? cursorColor,
})

Implementation

const TLTextFieldStyle({
  this.style,
  this.decoration,
  this.inputFormatters,
  this.enabled,
  this.readOnly = false,
  this.keyboardType,
  this.textInputAction,
  this.maxLines,
  this.minLines,
  this.maxLength,
  this.maxLengthEnforcement,
  this.showCursor,
  this.cursorWidth = 2,
  this.cursorHeight,
  this.cursorRadius,
  this.cursorColor,
});