XTextFormFieldLogin constructor

XTextFormFieldLogin({
  1. String? label,
  2. Color? borderColor,
  3. Color? colorPrefixIcon,
  4. Color? colorSuffixIcon,
  5. InputBorder? enabledBorder,
  6. InputBorder? disabledBorder,
  7. InputBorder? focusedBorder,
  8. bool borderVisible = true,
  9. InputBorder? border,
  10. String? hintText,
  11. TextStyle? labelStyle,
  12. Color? colorBorder,
  13. TextStyle? hintStyle,
  14. TextStyle? styleText,
  15. IconData? prefixIcon,
  16. TextEditingController? controller,
  17. Decoration? decoration,
  18. Widget? suffixIcon,
  19. Color? colorHintText,
  20. Color? colorLabel,
  21. ValueChanged<String>? onChanged,
  22. double width = 300,
  23. TextInputType keyboardType = TextInputType.text,
  24. TextInputAction textInputAction = TextInputAction.next,
  25. Function? onFieldSubmitted,
  26. Function? onSaved,
  27. String? initialValue,
  28. Function? validator,
  29. FocusNode? focusNode,
  30. bool obscureText = false,
})

Implementation

XTextFormFieldLogin(
    {this.label,
    this.borderColor,
    this.colorPrefixIcon,
    this.colorSuffixIcon,
    this.enabledBorder,
    this.disabledBorder,
    this.focusedBorder,
    this.borderVisible = true,
    this.border,
    this.hintText,
    this.labelStyle,
    this.colorBorder,
    this.hintStyle,
    this.styleText,
    this.prefixIcon,
    this.controller,
    this.decoration,
    this.suffixIcon,
    this.colorHintText,
    this.colorLabel,
    this.onChanged,
    this.width = 300,
    this.keyboardType = TextInputType.text,
    this.textInputAction = TextInputAction.next,
    this.onFieldSubmitted,
    this.onSaved,
    this.initialValue,
    this.validator,
    this.focusNode,
    this.obscureText = false});