如何自定义IconButton的颜色

时间:2020-10-19 09:01:54

标签: android android-jetpack-compose

我想自定义IconButton的颜色,而不是使用在TopAppBar上设置的默认值,但是在android.compose.material中没有更改它的slot 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)
                    }
                }
            )
        }
    )

1 个答案:

答案 0 :(得分:0)

您可以在tint中使用Icon参数

actions = {
    IconButton(onClick = { /* doSomething() */ }) {
        Icon(Icons.Filled.Add, tint = Color.Red)
    }
}

enter image description here