TFMaker constructor

TFMaker({
  1. Key? key,
  2. Widget? prefix,
  3. double? enabledBorderwidth,
  4. double? focusedBorderwidth,
  5. Color? enabledBorderColor,
  6. Color? focusedBorderColor,
  7. Widget? suffix,
  8. double? focusedCircularRadius,
  9. double? enabledCircularRadius,
  10. String? hintText,
  11. TextStyle? hintStyle,
  12. Widget? label,
  13. Color? disabledBorderColor,
  14. double? disabledBorderwidth,
  15. double? disabledCircularRadius,
  16. dynamic onChanged(
    1. String value
    )?,
  17. dynamic onSubmitted(
    1. String value
    )?,
  18. int? lines,
})

Implementation

TFMaker(
    {super.key,
    this.prefix,
    this.enabledBorderwidth,
    this.focusedBorderwidth,
    this.enabledBorderColor,
    this.focusedBorderColor,
    this.suffix,
    this.focusedCircularRadius,
    this.enabledCircularRadius,
    this.hintText,
    this.hintStyle,
    this.label,
    this.disabledBorderColor,
    this.disabledBorderwidth,
    this.disabledCircularRadius,
    this.onChanged,
    this.onSubmitted,
    this.lines});