XTextFormFieldWithContainer constructor

XTextFormFieldWithContainer({
  1. String? label,
  2. TextEditingController? controller,
  3. TextAlign? textAlign,
  4. IconData? icon,
  5. GestureTapCallback? onTap,
  6. FormFieldValidator<String>? validator,
  7. InputDecoration? decoration,
  8. ValueChanged<String>? onChanged,
  9. List<TextInputFormatter>? inputFormatters,
  10. dynamic onFieldSubmitted(
    1. String
    )?,
  11. dynamic onPressed()?,
  12. TextInputType? keyboardType,
  13. dynamic initialValue,
  14. FocusNode? focusNode,
  15. String? hintText = '',
})

Implementation

XTextFormFieldWithContainer({
  this.label,
  this.controller,
  this.textAlign,
  this.icon,
  this.onTap,
  this.validator,
  this.decoration,
  this.onChanged,
  this.inputFormatters,
  this.onFieldSubmitted,
  this.onPressed,
  this.keyboardType,
  this.initialValue,
  this.focusNode,
  this.hintText = '',
});