1

I have a @Composable Text("Dropbox") whose Modifier also implements a

clickable {
    //..
}

But when I tapping on it

enter image description here

, it gets a grey highlight!?

enter image description here

I do not want this grey hightlight. Can I get rid of this?

Ralf Wickum
  • 2,850
  • 9
  • 55
  • 103
  • Does this answer your question? [Android Compose change tap color](https://stackoverflow.com/questions/69000799/android-compose-change-tap-color/69000913#69000913) – Phil Dukhov Mar 21 '22 at 12:36

1 Answers1

2

Here indication is responsible for showing the highlight. So making indication = null should do the job

.clickable(
    onClick = {
        //..
    },
    indication = null,
    interactionSource = remember { MutableInteractionSource() }
)
Pavan Varma
  • 1,199
  • 1
  • 9
  • 21