Building a desktop app, and using
Modifier.combinedClickable().indication()
on a
Box
, and having a hard time figuring out how to just set the indication to null. As I understand it, I should just be able to set
indication = null
, but when I do
.indication(indication = null)
it complains about no value passed for
interactionSource
. Not really sure what I should pass there. There was
this workaround I found from a few weeks ago (
interactionSource = remember { MutableInteractionSource() }, indication = null
) but that doesn't seem to have any effect, the indication is still there.