applyShimmerThemed method

Widget applyShimmerThemed(
  1. BuildContext context
)

Adds themed shimmer animation to a widget.

Implementation

Widget applyShimmerThemed(BuildContext context) {
  return applyShimmer(
    baseColor: context.theme.colorScheme.onSurface.withValues(alpha: 0.05),
    highlightColor: context.theme.colorScheme.onSurface.withValues(alpha: 0.1),
  );
}