iconButtonTheme property

IconButtonThemeData get iconButtonTheme

Implementation

IconButtonThemeData get iconButtonTheme => IconButtonThemeData(
  style: IconButton.styleFrom(
    foregroundColor: colorScheme.onSurfaceVariant,
    hoverColor: colorScheme.onSurface.withValues(alpha: 0.08),
    focusColor: colorScheme.primary.withValues(alpha: 0.12),
    highlightColor: colorScheme.primary.withValues(alpha: 0.12),
    padding: EdgeInsets.all(8),
    shape: RoundedRectangleBorder(borderRadius: BorderRadius.circular(8)),
  ),
);