gpt4 book ai didi

android - Jetpack Compose 中的未绑定(bind)波纹/指示(相当于 selectableBackgroundBorderless)

转载 作者:行者123 更新时间:2023-12-04 23:36:57 30 4
gpt4 key购买 nike

在 Jetpack 中撰写 clickable修饰符默认使用 LocalIndication.current并显示一个绑定(bind)到边界的波纹。这看起来几乎总是很棒,但在某些情况下,圆形的、未绑定(bind)的波纹看起来更好。回到 View Android 我们会使用 android:background="?attr/selectableItemBackgroundBorderless实现这种行为。我们如何在compose中做到这一点?
示例 [source] :
2

最佳答案

您可以按如下方式自定义波纹效果:

Modifier.clickable(
interactionSource = remember { MutableInteractionSource() },
indication = rememberRipple(bounded = false), // You can also change the color and radius of the ripple
onClick = {}
)

关于android - Jetpack Compose 中的未绑定(bind)波纹/指示(相当于 selectableBackgroundBorderless),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/66387035/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com