getPaintingThemeDark function

ThemeData getPaintingThemeDark()

Implementation

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