HcTextFormField constructor
const
HcTextFormField({
- Key? key,
- required String title,
- Widget? suffixWidget,
- TextEditingController? controller,
- VoidCallback? onTap,
- bool enabled = true,
- TextInputType? keyboardType,
- List<
TextInputFormatter> ? inputFormatters, - String? validator()?,
- bool obscureText = false,
- Color color = Colors.white,
Implementation
const HcTextFormField(
{Key? key,
required this.title,
this.suffixWidget,
this.controller,
this.onTap,
this.enabled = true,
this.keyboardType,
this.inputFormatters,
this.validator,
this.obscureText = false,
this.color = Colors.white})
: super(key: key);