Android/Jetpack Compose

JetpackCompose 클릭 시 ripple 효과 없애기

loppav6 2022. 11. 16. 17:32

클릭 했을 때 깜빡이는 효과 없애기

 

1. 클릭 막기

Modifier.clickable(interactionSource = MutableInteractionSource(), indication = null)

 

2. ripple만 막기

val interactionSource = remember { MutableInteractionSource() }
modifier = Modifier.clickable(interactionSource = interactionSource, indication = null)