Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试构建一个没有背景(透明) 布局示例的 BottomNavigationBar 和浮动操作按钮, 你们可以帮忙布局吗?谢谢。
要使背景在 BottomNavigationBar 下扩展,您应该设置:
extendBody: true
作为 BottomNavigationBar 中的属性。
您需要用主题小部件包裹底部导航栏,并尝试将画布颜色属性修改为透明,如下所示
child: Theme( data: Theme.of(context) .copyWith(canvasColor: Colors.transparent), )