UdBasicTextInputField constructor

UdBasicTextInputField({
  1. double? height,
  2. double? width,
  3. int? index,
  4. String? hintText,
  5. Color? hintTextColor,
  6. Color? textColor,
  7. double? fontSize,
  8. FontWeight? fontWeight,
  9. TextAlign? textAlignment,
  10. bool? obsecureText,
  11. bool? readOnly,
  12. Color? backgroundColor,
  13. Color? borderColor,
  14. double? borderWidth,
  15. double? borderRadius,
  16. EdgeInsets? padding,
  17. bool? disableShadow,
  18. Color? shadowColor,
  19. Offset? shadowOffset,
  20. double? shadowBlurRadius,
  21. double? shadowSpreadRadius,
  22. Widget? leftItem,
  23. ValueChanged? onChanged,
  24. Function? onTap,
  25. Function? onEditingComplete,
  26. ValueChanged<int>? getIndex,
  27. TextEditingController? controller,
  28. FocusNode? focusNode,
  29. List<TextInputFormatter>? textInputFormatters,
  30. TextInputType? textInputType,
  31. TextInputAction? textInputAction,
})

Implementation

UdBasicTextInputField({
  this.height,
  this.width,
  this.index,
  this.hintText,
  this.hintTextColor,
  this.textColor,
  this.fontSize,
  this.fontWeight,
  this.textAlignment,
  this.obsecureText,
  this.readOnly,
  // this.enableDefaultBorder,
  // this.enableFocusBorder,
  // this.borderColorDefault,
  // this.borderColorOnFocus,
  // this.borderWidthDefault,
  // this.borderWidthOnFocus,
  this.backgroundColor,
  this.borderColor,
  this.borderWidth,
  this.borderRadius,
  this.padding,
  this.disableShadow,
  this.shadowColor,
  this.shadowOffset,
  this.shadowBlurRadius,
  this.shadowSpreadRadius,
  this.leftItem,
  this.onChanged,
  this.onTap,
  this.onEditingComplete,
  this.getIndex,
  this.controller,
  this.focusNode,
  this.textInputFormatters,
  this.textInputType,
  this.textInputAction,
});