IDSTextAreaTitle constructor

const IDSTextAreaTitle({
  1. Key? key,
  2. required String title,
  3. double height = 50,
  4. required TextEditingController controller,
  5. required String hintText,
  6. required Color hintTextColor,
  7. required Color textColor,
  8. required Color borderColor,
  9. required Color focusedBorderColor,
  10. double circularRadius = 8.0,
  11. String? validator(
    1. String?
    )?,
  12. TextInputType? keyboardType = TextInputType.multiline,
  13. dynamic maxLines = 10,
  14. TextInputAction? textInputAction = TextInputAction.newline,
})

Creates a customizable text area with a title, optional styling, and properties.

Implementation

const IDSTextAreaTitle({
  super.key,
  required this.title,
  this.height = 50,
  required this.controller,
  required this.hintText,
  required this.hintTextColor,
  required this.textColor,
  required this.borderColor,
  required this.focusedBorderColor,
  this.circularRadius = 8.0,
  this.validator,
  this.keyboardType = TextInputType.multiline,
  this.maxLines = 10,
  this.textInputAction = TextInputAction.newline,
});