I am trying to use `.clickable()` modifier, the va...
# compose
d
I am trying to use
.clickable()
modifier, the variant with the indication parameter. But whatever I do Android Studio decides to import the other one without that parameter and says that indication is not a parameter. The documentation says to use the other "overload" with the indication parameter, but I am out of ideas on how to make Android Studio see that I want to use that one...
l
You also need to provide a value for interactionSource as well, the overload requires both to be specified
d
Oh wow that worked, thanks...