CFormfield constructor
CFormfield({
- Key? key,
- String? title,
- dynamic onChanged(
- dynamic
- String text = '',
- String? buttonText,
- TextEditingController? controller,
- void onPressed()?,
- bool disabled = false,
- bool? visible,
- bool obscure = false,
- String? errText,
- FocusNode? focusNode,
- bool readOnly = false,
- CTextFieldType type = CTextFieldType.text,
Implementation
CFormfield(
{super.key,
this.title,
this.onChanged,
this.text = '',
this.buttonText,
this.controller,
this.onPressed,
this.disabled = false,
super.visible,
this.obscure = false,
this.errText,
this.focusNode,
this.readOnly = false,
this.type = CTextFieldType.text});