IDSInputFieldTile constructor
const
IDSInputFieldTile({
- Key? key,
- required String title,
- 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,
Creates an IDSInputFieldTile with a label and input field.
Implementation
const IDSInputFieldTile({
super.key,
required this.title,
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,
});