CustominputText constructor
const
CustominputText({
- Key? key,
- TextEditingController? textEditingController,
- bool? autoFocus,
- dynamic onChanged()?,
- bool? isEnabled = true,
- bool? enableInteractiveSelection,
- TextInputType? textInputType,
- bool? showPassword,
- String? validator()?,
- TextInputAction? textInputAction,
- Widget? prefixWidget,
- Widget? suffixWidget,
- Color? textInputBackgroundColor,
- double? borderRadius,
- String? hintText,
- EdgeInsets? edgeInsets,
- FocusNode? focusNode,
- int? maxLength,
- int? maxLines,
- InputBorder? border,
- String? labelText,
- bool? alignLabelWithHint,
- void onFieldSubmitted()?,
- void onTap()?,
- bool? readOnly,
Implementation
const CustominputText(
{super.key,
this.textEditingController,
this.autoFocus,
this.onChanged,
this.isEnabled = true,
this.enableInteractiveSelection,
this.textInputType,
this.showPassword,
this.validator,
this.textInputAction,
this.prefixWidget,
this.suffixWidget,
this.textInputBackgroundColor,
this.borderRadius,
this.hintText,
this.edgeInsets,
this.focusNode,
this.maxLength,
this.maxLines,
this.border,
this.labelText,
this.alignLabelWithHint,
this.onFieldSubmitted,
this.onTap,
this.readOnly});