getPaintingThemeLight function

ThemeData getPaintingThemeLight()

Implementation

ThemeData getPaintingThemeLight() {
  return getDecoratingThemeLight().copyWith(
    iconButtonTheme: IconButtonThemeData(
      style: IconButton.styleFrom(
        elevation: 0,
        foregroundColor: Colors.grey,
      ),
    ),
  );
}