bharat to
11/13/2020, 7:43 AMModifier.clickable()
? for every *Button
this behavior is common. I couldn't find any online resources to do this in compose.József Szilvási
11/13/2020, 9:02 AMModifier.clickable(indication = null)
bharat to
11/13/2020, 9:08 AMModifier.clickable
. The indication parameter is not there for *Button
. Can we do it for IconButton
and CheckBox
Mark Murphy
11/13/2020, 1:10 PMmaterial
package (e.g., IconButton()
), they will follow Material Design rules and usually do not offer ways of opting out. You will need to look at their implementations and see if they are based on other composables less tied to Material Design. IconButton()
, as it turns out, is just a Box
.bharat to
11/13/2020, 1:26 PM