AppTextField constructor
const
AppTextField({
- Key? key,
- required String hint,
- TextEditingController? controller,
- bool password = false,
- String? error,
- bool enabled = true,
- String? svgIconPath,
- dynamic onChange(
- String value
- Widget? trailingWidget,
- bool autoFocus = false,
- TextInputType? textInputType,
- bool web = false,
- int? maxLines,
- int? minLines,
Implementation
const AppTextField({
super.key,
required this.hint,
this.controller,
this.password = false,
this.error,
this.enabled = true,
this.svgIconPath,
this.onChange,
this.trailingWidget,
this.autoFocus = false,
this.textInputType,
this.web = false,
this.maxLines,
this.minLines,
});