RefreshChipAction function

Widget RefreshChipAction(
  1. VoidCallback onPressed
)

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);
}