JuiItemConfig constructor

const JuiItemConfig({
  1. bool isRequired = false,
  2. bool isDisabled = false,
  3. Widget? titleSuffixWidget,
  4. Widget? titleBeforeRequiredWidget,
  5. Widget? requiredMarker,
  6. TextStyle? customTitleStyle,
  7. bool showDivider = true,
  8. EdgeInsetsGeometry? padding,
  9. EdgeInsetsGeometry? dividerPadding,
  10. bool showTips = false,
  11. String tipText = '',
  12. VoidCallback? onTap,
  13. String? semanticsLabel,
  14. bool excludeSemantics = true,
})

Implementation

const JuiItemConfig(
    {this.isRequired = false,
    this.isDisabled = false,
    this.titleSuffixWidget,
    this.titleBeforeRequiredWidget,
    this.requiredMarker,
    this.customTitleStyle,
    this.showDivider = true,
    this.padding,
    this.dividerPadding,
    this.showTips = false,
    this.tipText = '',
    this.onTap,
    this.semanticsLabel,
    this.excludeSemantics = true});