PalettePainterHintsProvider

abstract class PalettePainterHintsProvider(isDark: Boolean, intellijIconPalette: Map<String, String?>, themeIconPalette: Map<String, String?>, themeColorPalette: Map<String, Color?>) : PainterHintsProvider

Provides the default PainterHints to use to load images.

Constructors

Link copied to clipboard
constructor(isDark: Boolean, intellijIconPalette: Map<String, String?>, themeIconPalette: Map<String, String?>, themeColorPalette: Map<String, Color?>)

Functions

Link copied to clipboard
@Composable
abstract fun hints(path: String): List<PainterHint>

These hints will be consumed after the hints which are passed as a parameter to PainterProvider.getPainter.

Link copied to clipboard
@Composable
open fun priorityHints(path: String): List<PainterHint>

These hints will be consumed before the hints which are passed as a parameter to PainterProvider.getPainter.