primaryIconButtonThemeData static method

IconButtonThemeData primaryIconButtonThemeData()

The primary IconButtonThemeData for the dark theme.

Implementation

static IconButtonThemeData primaryIconButtonThemeData() {
  return IconButtonThemeData(
    style: IconButton.styleFrom(
      foregroundColor: DarkThemeColors.colorScheme.onPrimaryContainer,
      backgroundColor: Colors.transparent,
      disabledForegroundColor: DarkThemeColors.colorScheme.onSurfaceVariant,
      disabledBackgroundColor: DarkThemeColors.colorScheme.surfaceDim,
      elevation: 0,
      padding: const EdgeInsets.all(16),
      shape: RoundedRectangleBorder(borderRadius: BorderRadius.circular(10)),
    ),
  );
}