IDSMobileFieldTitle constructor

const IDSMobileFieldTitle({
  1. Key? key,
  2. required TextEditingController controller,
  3. required String hintText,
  4. Widget? prefixIcon,
  5. Color? prefixIconColor,
  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,
  13. List<TextInputFormatter>? inputFormatters,
  14. required String title,
})

Creates a custom mobile input field with title and validation.

Implementation

const IDSMobileFieldTitle({
  super.key,
  required this.controller,
  required this.hintText,
  this.prefixIcon,
  this.prefixIconColor,
  required this.hintTextColor,
  required this.textColor,
  required this.borderColor,
  required this.focusedBorderColor,
  this.circularRadius = 8.0,
  this.validator,
  this.keyboardType,
  this.inputFormatters,
  required this.title,
});