IDSMobileFieldTitle constructor
const
IDSMobileFieldTitle({
- Key? key,
- required TextEditingController controller,
- required String hintText,
- Widget? prefixIcon,
- Color? prefixIconColor,
- required Color hintTextColor,
- required Color textColor,
- required Color borderColor,
- required Color focusedBorderColor,
- double circularRadius = 8.0,
- String? validator()?,
- TextInputType? keyboardType,
- List<
TextInputFormatter> ? inputFormatters, - 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,
});