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.text,
- int maxLines = 10,
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.text,
this.maxLines = 10
});