如何自定义IconButton的颜色

问题描述

我想自定义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)
                    }
                }
            )
        }
    )

解决方法

您可以在tint中使用Icon参数

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

enter image description here