我是新的作曲。如何在NavigationBar上删除此背景?当我打开布局检查器时,它表明脚手架是罪魁祸首,我已经将脚手架的Insets设置为0dp。
导航栏上的“我的修改器”如下:
NavigationBar(
modifier = Modifier
// ... other modifiers
.graphicsLayer {
shape = RoundedCornerShape(topStartPercent = 25, topEndPercent = 25)
clip = true
}
) { // content }
1条答案
按热度按时间mzaanser1#
原来是脚手架的paddingValues搞砸了……