GfFormFieldDecoration constructor

const GfFormFieldDecoration({
  1. required BuildContext context,
  2. required GFTextFieldShape shape,
  3. required bool bgfilled,
  4. Color? bgcolor,
  5. Color? editingBorderColor,
  6. Color? idleBorderColor,
  7. double? borderRadius,
  8. Color? textColor,
  9. double? radius,
  10. double? borderWidth,
  11. Widget? gfprefixIcon,
  12. String? hinttext,
  13. EdgeInsets? fieldPadding,
})

Implementation

const GfFormFieldDecoration(
    {required this.context,
    required this.shape,
    required this.bgfilled,
    this.bgcolor,
    this.editingBorderColor,
    this.idleBorderColor,
    this.borderRadius,
    this.textColor,
    this.radius,
    this.borderWidth,
    this.gfprefixIcon,
    this.hinttext,
    this.fieldPadding});