AuiChip.outlined constructor
const
AuiChip.outlined({
- 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 transparent background and a coloured border.
Implementation
const AuiChip.outlined({
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.outlined;