AntdFormItem constructor

const AntdFormItem({
  1. Key? key,
  2. AntdFormItemStyle? style,
  3. AntdStyleBuilder<AntdFormItemStyle, AntdFormItem>? styleBuilder,
  4. bool? readOnly,
  5. bool? disabled,
  6. bool? hasFeedback,
  7. AntdFormLayout? layout,
  8. bool? preserve,
  9. bool? required,
  10. AntdFormTrigger? trigger,
  11. bool? validateFirst,
  12. AntdFormTrigger? validateTrigger,
  13. Widget? help,
  14. Widget helpIcon = const AntdIcon(icon: AntdIcons.questionCircle),
  15. bool? hidden,
  16. dynamic initialValue,
  17. AntdFormItemChange? onChange,
  18. Widget? label,
  19. required String name,
  20. List<String>? dependencies,
  21. AntdFormItemNormalize? normalize,
  22. List<AntdFormRule>? rules,
  23. Widget? extra,
  24. required AntdFormItemBuilder builder,
  25. AntdFormItemLayoutBuilder? layoutBuilder,
  26. AntdFormItemShouUpdate? shouUpdate,
})

Implementation

const AntdFormItem(
    {super.key,
    super.style,
    super.styleBuilder,
    super.readOnly,
    super.disabled,
    super.hasFeedback,
    super.layout,
    super.preserve,
    super.required,
    super.trigger,
    super.validateFirst,
    super.validateTrigger,
    this.help,
    this.helpIcon = const AntdIcon(
      icon: AntdIcons.questionCircle,
    ),
    this.hidden,
    this.initialValue,
    this.onChange,
    this.label,
    required this.name,
    this.dependencies,
    this.normalize,
    this.rules,
    this.extra,
    required this.builder,
    this.layoutBuilder,
    this.shouUpdate});