Source set: Common
public val LocalRippleThemeConfiguration: ProvidableCompositionLocal<RippleThemeConfiguration> =
compositionLocalOf {
RippleDefaults.ThemeConfiguration
}
The overall RippleThemeConfiguration in use by all built-in components and ripple.
By default, this will be RippleDefaults.ThemeConfiguration.
The ripple configuration is resolved as follows:
- LocalRippleThemeConfiguration provides the highest-level theming configuration for ripples,
- LocalRippleConfiguration provides hierarchical per-ripple configuration for ripple,
- ripple parameters allow specifying configuration for individual indication callsites in
including whether the focus indication is drawn by inset focus rings.
including disabling ripples and their indications. This takes next highest priority.
components.