AuiChip.soft constructor
const
AuiChip.soft({
- Key? key,
- required String label,
- Widget? avatar,
- VoidCallback? onTap,
- VoidCallback? onDelete,
- bool selected = false,
- Color? color,
- TextStyle? labelStyle,
- EdgeInsetsGeometry? padding,
- bool disabled = false,
Creates an AuiChip with a lightly tinted background and a subtle border.
Implementation
const AuiChip.soft({
super.key,
required this.label,
this.avatar,
this.onTap,
this.onDelete,
this.selected = false,
this.color,
this.labelStyle,
this.padding,
this.disabled = false,
}) : _variant = _AuiChipVariant.soft;