gpt4 book ai didi

android - 如何自定义 IconButton 的颜色

转载 作者:行者123 更新时间:2023-12-04 08:44:00 32 4
gpt4 key购买 nike

我想自定义 IconButton 的颜色,而不是使用 TopAppBar 上设置的默认值,而是使用 android.compose.material没有插槽 api 可以更改它。

    Scaffold(
topBar = {
TopAppBar(
title = {
Text(text = "LayoutsCodelab")
},
actions = {
IconButton(onClick = { /* doSomething() */ }) { // <- why it has the theme color and how to custom it.
Icon(Icons.Filled.Favorite)
}
}
)
}
)

最佳答案

您可以使用 tint Icon 中的参数可组合:

actions = {
IconButton(onClick = { /* doSomething() */ }) {
Icon(Icons.Filled.Add,
"contentDescription",
tint = Color.Red)
}
}
enter image description here

关于android - 如何自定义 IconButton 的颜色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/64424206/

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