英文:
Set `Divider` color to `OutlinedTextField` border color
问题
默认的Divider
颜色在我的情况下看起来很奇怪:
如果它能匹配文本字段的边框颜色,那就好了,但我不知道如何获取它的默认颜色。
英文:
The default color for Divider
looks awkward in my case:
It would be nice if it matched the border color of the text fields, but I can't figure out, how to get the default color of it.
答案1
得分: 0
Divider
接受一个 color
参数:
@Composable
@ComposableTarget
public fun Divider(
modifier: Modifier,
thickness: Dp,
color: Color
): Unit
Divider(color = MaterialTheme.colorScheme.outline)
英文:
The Divider
takes a color
parameter:
@Composable
@ComposableTarget
public fun Divider(
modifier: Modifier,
thickness: Dp,
color: Color
): Unit
Divider(color = MaterialTheme.colorScheme.outline)
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论