gpt4 book ai didi

flutter - 去除底部导航栏 flutter 中的底部阴影效果

转载 作者:行者123 更新时间:2023-12-04 04:00:32 35 4
gpt4 key购买 nike

enter image description here
iPhone 11 底部导航栏有如上图所示的底部阴影,有什么办法可以去除阴影吗?

floatingActionButtonLocation: FloatingActionButtonLocation.centerDocked,
bottomNavigationBar: BottomAppBar(
clipBehavior: Clip.antiAliasWithSaveLayer,
shape: CircularNotchedRectangle(),
child: Theme(
data: Theme.of(buildContext)
.copyWith(canvasColor: Colors.white, primaryColor: Colors.grey),
child: BottomNavigationBar(
onTap: (index){

},
type: BottomNavigationBarType.fixed,
items: bottomNavigationBar.map((element) {
return BottomNavigationBarItem(
icon: Icon(element["icon"]), title: Text(element["title"]));
}).toList(),
),
),
));
enter image description here
编辑:这是我在设置海拔后得到的结果:0
enter image description here
编辑:添加 safearea bottomAppBar 阴影问题解决后,是否可以保留我以前拥有的 statusBarColor(缺口区域)?

最佳答案

在您的 BottomNavigationBar 内放 elevation: 0.0例子:

child: BottomNavigationBar(
type: BottomNavigationBarType.fixed,
backgroundColor: Theme.of(context).primaryColor,
elevation: 0.0,
BottomNavigationBar

关于flutter - 去除底部导航栏 flutter 中的底部阴影效果,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63110393/

35 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com