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