Hi everyone, I’m having trouble removing the rippl...
# compose
c
Hi everyone, I’m having trouble removing the ripple effect from the drag handle when using
BottomSheetScaffold
. I’ve tried a few approaches to disable it, but the ripple still appears when the handle is pressed or interacted with. My goal is to have the drag handle without any ripple or press indication. Has anyone managed to remove the ripple effect from the drag handle in
BottomSheetScaffold
, or is there a recommended way to override it? Any help or pointers would be appreciated. Thanks!
Wrapping the entire BottomSheetScaffold in
Copy code
CompositionLocalProvider(LocalRippleConfiguration provides null)
disables it of course but it also removes all the ripple effects inside of the content which I don't want...