why
02/02/2021, 11:07 AMnull
like this:
Modifier.clickable (indication = null){}
any idea?Michael Elgavi
02/02/2021, 11:10 AMclickable
, possibly a kotlin compiler bug?
Anyway I got it to work by also specifying `interactionState`:
Modifier.clickable(
indication = null,
interactionState = remember { InteractionState() }) { ... }
why
02/02/2021, 11:13 AM@Suppress("DEPRECATION")
in the src?Michael Elgavi
02/02/2021, 11:15 AMSinan Gunes
02/02/2021, 11:21 AMModifier.clickable().indication()
why
02/02/2021, 11:26 AMnull
doesn't remove the indication
effect, how do you use it?Sinan Gunes
02/02/2021, 11:28 AMZach Klippenstein (he/him) [MOD]
02/02/2021, 1:59 PM