11 lines
305 B
Kotlin
11 lines
305 B
Kotlin
|
|
package com.esun
|
||
|
|
|
||
|
|
import androidx.compose.foundation.gestures.detectTapGestures
|
||
|
|
import androidx.compose.ui.Modifier
|
||
|
|
import androidx.compose.ui.input.pointer.pointerInput
|
||
|
|
|
||
|
|
fun Modifier.noRippleTap(onTap: () -> Unit): Modifier =
|
||
|
|
pointerInput(Unit) {
|
||
|
|
detectTapGestures(onTap = { onTap() })
|
||
|
|
}
|