FormTheme constructor

const FormTheme({
  1. Widget layoutBuilder({
    1. Widget? description,
    2. Widget? errors,
    3. bool? expanded,
    4. Widget field,
    5. Widget? icon,
    6. Widget layout,
    7. FormTheme theme,
    8. Widget? title,
    })?,
  2. FormFieldBuilder? fieldBuilder,
  3. FormFieldBuilder? nonTextFieldBuilder,
  4. FieldColorScheme? colorScheme,
  5. FieldColorScheme? errorColorScheme,
  6. FieldColorScheme? activeColorScheme,
  7. FieldColorScheme? disabledColorScheme,
  8. FieldColorScheme? selectedColorScheme,
  9. InputDecoration? inputDecoration,
  10. TextStyle? titleStyle,
  11. TextStyle? descriptionStyle,
  12. TextStyle? hintTextStyle,
  13. TextStyle? chipTextStyle,
})

Implementation

const FormTheme({
  this.layoutBuilder,
  this.fieldBuilder,
  this.nonTextFieldBuilder,
  this.colorScheme,
  this.errorColorScheme,
  this.activeColorScheme,
  this.disabledColorScheme,
  this.selectedColorScheme,
  this.inputDecoration,
  this.titleStyle,
  this.descriptionStyle,
  this.hintTextStyle,
  this.chipTextStyle,
});