在
Button
中,您不能在indication=null
修饰符中使用clickable
,因为它是由使用indication = rememberRipple()
的组件在内部定义的。这会使用 Ripple
提供的值创建并记住一个 RippleTheme
。
您可以提供自定义
LocalRippleTheme
来覆盖默认行为。
类似的东西:
CompositionLocalProvider(LocalRippleTheme provides NoRippleTheme) {
Button(
onClick = { /*...*/ },
) {
//...
}
}
与:
private object NoRippleTheme : RippleTheme {
@Composable
override fun defaultColor() = Color.Unspecified
@Composable
override fun rippleAlpha(): RippleAlpha = RippleAlpha(0.0f,0.0f,0.0f,0.0f)
}
你可以使用
Modifier.pointerInput(Unit) {
detectTapGestures(
onPress = { /* Called when the gesture starts */ },
onDoubleTap = { /* Called on Double Tap */ },
onLongPress = { /* Called on Long Press */ },
onTap = { /* Called on Tap */ }
)
}
代替
onClick()
。点击按钮时不会显示波浪效果。