1

如何更改底部栏的切口颜色?

我知道它从 中获取颜色MaterialTheme.colors.background,但我不想更改所有组件的背景颜色,只更改底栏。(图片中剪下的白色。)

在此处输入图像描述

我尝试了不同的方法,例如为底部栏设置一个新主题,但这不起作用。

val bottomBarColors = MaterialTheme.colors.copy(background = Color.LightGray)
...

bottomBar = {
    MaterialTheme(
        colors = bottomBarColors,
        typography = MaterialTheme.typography,
        shapes = MaterialTheme.shapes
    ) {
        BottomAppBar(
            cutoutShape = fabShape,
            content = {
                MyBottomNavigation(navController, bottomNavigationItems)
            })
    }
}
4

2 回答 2

2

在您的情况下,您可以将其Modifier.background应用于BottomAppBar

    bottomBar = {
        BottomAppBar(
            modifier = Modifier.background(Color.Red),
            cutoutShape = fabShape) {

            BottomNavigation {
                /* .... */
            }
        }
    }

在此处输入图像描述

于 2021-07-28T19:37:04.070 回答
-1

解决方案比我想象的要容易。只需在底部栏下方添加一些内容:

bottomBar = {
        Box {
            Spacer(modifier = Modifier.matchParentSize().background(color = Color.Blue))
            BottomAppBar(
                cutoutShape = fabShape,
                content = {
                    MyBottomNavigation(navController, bottomNavigationItems)
                })
    }
}
于 2021-07-28T18:26:12.350 回答