TextfieldWidget constructor
const
TextfieldWidget({
- Key? key,
- required Widget child,
- TextEditingController? controller,
- String? labelTitulo,
- bool? tituloColorPrimario = true,
- String? hintText,
- dynamic onChanged()?,
- dynamic onSubmitted()?,
- double? maxWidth,
- FocusNode? focusNode,
- bool? isDense,
- Widget? leftWidget,
- Widget? rightWidget,
- bool? disabled,
- bool? tituloNegrita = !kIsWeb,

Implementation
const TextfieldWidget({
super.key,
required this.child,
this.controller,
this.labelTitulo,
this.tituloColorPrimario = true,
this.hintText,
this.onChanged,
this.onSubmitted,
this.maxWidth,
this.focusNode,
this.isDense,
this.leftWidget,
this.rightWidget,
this.disabled,
this.tituloNegrita = !kIsWeb,
});