如何在 FAB 后面添加这种模糊效果?我尝试使用 BottomAppBar 实现此目的,但 BottomAppBar 不接受 LinearGradient 中的透明颜色我也尝试降低 BottomAppBar 背景的不透明度,但效果不佳
Widget build(BuildContext context) {
return Scaffold(
body: _myListView(context),
bottomNavigationBar: BottomAppBar(
child: Container(
height: MediaQuery.of(context).size.height/10,
decoration: BoxDecoration(
gradient: LinearGradient(colors: [Colors.transparent,Colors.white],
begin: Alignment.topCenter,
end: Alignment.bottomCenter
)
),
child: MyFloatingActionButton(),
),
),
);
}