DeleteChipAction function
Implementation
Widget DeleteChipAction(VoidCallback onPressed) {
return ActionChip(
label: "删除".text(),
avatar: CircleAvatar(
backgroundColor: Colors.transparent,
foregroundColor: globalTheme.textTheme.labelMedium?.color,
child: Icons.delete_forever.icon(),
),
onPressed: onPressed);
}