primaryIconButtonThemeData static method
The primary IconButtonThemeData for the light theme.
Implementation
static IconButtonThemeData primaryIconButtonThemeData() {
return IconButtonThemeData(
style: IconButton.styleFrom(
foregroundColor: LightThemeColors.colorScheme.onPrimaryContainer,
backgroundColor: LightThemeColors.colorScheme.surfaceBright,
disabledForegroundColor: LightThemeColors.colorScheme.onSurfaceVariant,
disabledBackgroundColor: LightThemeColors.colorScheme.surfaceDim,
elevation: 0,
padding: const EdgeInsets.all(16),
shape: RoundedRectangleBorder(borderRadius: BorderRadius.circular(10)),
),
);
}