SFTextArea constructor

const SFTextArea({
  1. Key? key,
  2. TextEditingController? controller,
  3. String? writer,
  4. String? hintText,
  5. TextStyle? hintStyle,
  6. TextStyle? textStyle,
  7. int? minLines = 11,
  8. int? maxLines = 11,
  9. double? width,
  10. bool readOnly = false,
  11. double radius = 10,
  12. Color? borderColor,
  13. dynamic onChanged(
    1. String
    )?,
  14. dynamic onSaved(
    1. String?
    )?,
})

Implementation

const SFTextArea({
  super.key,
  this.controller,
  this.writer,
  this.hintText,
  this.hintStyle,
  this.textStyle,
  this.minLines = 11,
  this.maxLines = 11,
  this.width,
  this.readOnly = false,
  this.radius = 10,
  this.borderColor,
  this.onChanged,
  this.onSaved,
});