gpt4 book ai didi

flutter - BottomAppBar float 操作按钮缺口/插图不透明

转载 作者:IT老高 更新时间:2023-10-28 12:36:55 24 4
gpt4 key购买 nike

我已经添加了一个 BottomAppBar 来在 materialApp 中搭建脚手架,并且我在中心添加了一个带有插图的 fab。代码看起来有点像这样

Scaffold(
bottomNavigationBar: BottomAppBar(
color: Theme.of(context).accentColor,
shape: CircularNotchedRectangle(),
child: _buildBottomBar(context),
),
floatingActionButtonLocation: FloatingActionButtonLocation.centerDocked,
floatingActionButton: FloatingActionButton(
backgroundColor: Theme.of(context).primaryColor,
child: Center(
child: Icon(
Icons.add,
size: 32.0,
),
),
onPressed: () {
Navigator.push(
context,
MaterialPageRoute(builder: (context) => CreateEvent()),
);
},
),
)

这就是我在渲染后得到的:

enter image description here

缺口不透明,后面的内容被隐藏了。

有没有办法解决这个问题?我可能错过了什么?

最佳答案

你只需要在flutter channel :ma​​ster,然后添加到Scaffold:

Scaffold(
extendBody: true
);

它应该是透明的:)

问候

钢筋

更新:

您无需在主 channel 上。它无处不在:)

关于flutter - BottomAppBar float 操作按钮缺口/插图不透明,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52592588/

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