android 当剪辑到RoundedCornerShape上时删除NavigationBar背景- Jetpack Compose

ffscu2ro  于 2023-05-05  发布在  Android
关注(0)|答案(1)|浏览(121)

我是新的作曲。如何在NavigationBar上删除此背景?当我打开布局检查器时,它表明脚手架是罪魁祸首,我已经将脚手架的Insets设置为0dp。

导航栏上的“我的修改器”如下:

NavigationBar(
  modifier = Modifier
    // ... other modifiers
    .graphicsLayer {
        shape = RoundedCornerShape(topStartPercent = 25, topEndPercent = 25)
        clip = true
    }
) { // content }
mzaanser

mzaanser1#

原来是脚手架的paddingValues搞砸了……

Scaffold(
  // ...
) { padding -> // the culprit!!!!
   // ...
}

相关问题