I see in the latest version of material, that Rip...
# compose-android
j
I see in the latest version of material, that RippleTheme is deprecated in favour of RippleConfiguration, before I was setting a custom ripple that changed the color that came from a composition local. Is it ok to create RippleConfigurations inline like this (where dsTheme is @Composable)
Copy code
CompositionLocalProvider(LocalRippleConfiguration provides RippleConfiguration(color = dsTheme.colors.primary.v120)) { ... }