CustomizedEditText constructor

const CustomizedEditText({
  1. Key? key,
  2. bool? isBank = false,
  3. String? hint,
  4. String? label,
  5. dynamic onTap()?,
  6. String? errorMessage,
  7. String? obscuringCharacter = '●',
  8. bool? enabled = true,
  9. int? maxLines = 1,
  10. int? minLines = 1,
  11. bool? isQty = false,
  12. @required TextEditingController? controller,
  13. EdgeInsets? margin = const EdgeInsets.all(0),
  14. EdgeInsets? padding,
  15. bool? obscureText,
  16. TextInputType? keyboardType = TextInputType.text,
  17. TextInputAction? textInputAction = TextInputAction.done,
  18. dynamic onFieldSubmitted(
    1. String
    )?,
  19. dynamic onChanged(
    1. String
    )?,
  20. Widget? suffix,
  21. String? assets,
  22. BorderRadius? borderRadius,
  23. Border? border,
  24. Color? colorText,
  25. bool? enableTextView,
  26. bool? isSearch,
  27. bool? isEdit,
  28. Color? colorsHints,
  29. String? customSuffixIcon,
  30. String? suffixIcon,
  31. bool? isMessage,
  32. bool? counterText,
  33. int? maxLenght,
  34. String? condition,
  35. bool? isPassword = false,
  36. TextAlign? textAlign,
  37. dynamic onEditingFinished()?,
  38. bool? isCurrency,
  39. bool? isWeight = false,
  40. Color? colorBackground,
  41. bool? autoFocus,
  42. dynamic isEnableBorder,
  43. dynamic onTapSuffix()?,
  44. bool? isHideHint,
  45. Color? cursorColor,
  46. TextStyle? hintStyle,
  47. TextStyle? labelStyle,
  48. Color? titleColorActive,
  49. double? sizeFont,
  50. bool? onlyProfileBand,
  51. @required FocusNode? focusNode,
})

Implementation

const CustomizedEditText(
    {Key? key,
    this.isBank = false,
    this.hint,
    this.label,
    this.onTap,
    this.errorMessage,
    this.obscuringCharacter = '●',
    this.enabled = true,
    this.maxLines = 1,
    this.minLines = 1,
    this.isQty = false,
    @required this.controller,
    this.margin = const EdgeInsets.all(0),
    this.padding,
    this.obscureText,
    this.keyboardType = TextInputType.text,
    this.textInputAction = TextInputAction.done,
    this.onFieldSubmitted,
    this.onChanged,
    this.suffix,
    this.assets,
    this.borderRadius,
    this.border,
    this.colorText,
    this.enableTextView,
    this.isSearch,
    this.isEdit,
    this.colorsHints,
    this.customSuffixIcon,
    this.suffixIcon,
    this.isMessage,
    this.counterText,
    this.maxLenght,
    this.condition,
    this.isPassword = false,
    this.textAlign,
    this.onEditingFinished,
    this.isCurrency,
    this.isWeight = false,
    this.colorBackground,
    this.autoFocus,
    this.isEnableBorder,
    this.onTapSuffix,
    this.isHideHint,
    this.cursorColor,
    this.hintStyle,
    this.labelStyle,
    this.titleColorActive,
    this.sizeFont,
      this.onlyProfileBand,
    // this.borderBuilder,
    @required this.focusNode})
    : super(key: key);