IDSInputFieldTile constructor

const IDSInputFieldTile({
  1. Key? key,
  2. required String title,
  3. required TextEditingController controller,
  4. required String hintText,
  5. required Color hintTextColor,
  6. required Color textColor,
  7. required Color borderColor,
  8. required Color focusedBorderColor,
  9. double circularRadius = 8.0,
  10. String? validator(
    1. String?
    )?,
  11. 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,
});