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