IDSTextAreaTitle constructor
const
IDSTextAreaTitle({
- Key? key,
- required String title,
- double height = 50,
- required TextEditingController controller,
- required String hintText,
- required Color hintTextColor,
- required Color textColor,
- required Color borderColor,
- required Color focusedBorderColor,
- double circularRadius = 8.0,
- String? validator()?,
- TextInputType? keyboardType = TextInputType.multiline,
- dynamic maxLines = 10,
- 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,
});