Hello. I've recently been trying to migrate from r...
# compose-wear
b
Hello. I've recently been trying to migrate from rippleTheme to RippleConfiguration. I am currently using wear-compose-material 1.4.0-beta01. and compose-material 1.7.0-alpha01. During migration, I discovered that RippleConfiguration was not applied to the button and ripple() of wear-compose-material. Both libraries' ripple() logics are looks like same. So, I am guessing that this occurs because LocalRippleConfiguration's update logic exists only in compose-material. Likes below block.
Copy code
private fun updateConfiguration() {
    observeReads {
        val configuration = currentValueOf(LocalRippleConfiguration)
        if (configuration == null) {
            removeRipple()
        } else {
            if (rippleNode == null) attachNewRipple()
        }
    }
}
Or there may be other reasons. I thinks I need to dig into wear-compose-material a little more. For now, I think I need to replace the items in the wear-compose-material to compose-material for ripple-migration. Am I missing something about ripple-migration?