将`Divider`的颜色设置为`OutlinedTextField`的边框颜色。

huangapple go评论74阅读模式
英文:

Set `Divider` color to `OutlinedTextField` border color

问题

默认的Divider颜色在我的情况下看起来很奇怪:

将`Divider`的颜色设置为`OutlinedTextField`的边框颜色。

如果它能匹配文本字段的边框颜色,那就好了,但我不知道如何获取它的默认颜色。

英文:

The default color for Divider looks awkward in my case:

将`Divider`的颜色设置为`OutlinedTextField`的边框颜色。

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)

huangapple
  • 本文由 发表于 2023年7月24日 14:48:50
  • 转载请务必保留本文链接:https://go.coder-hub.com/76752017.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定