当前这是我的照片。
我正在将Stack
小部件与BackDropFilter
一起使用。我想将图像的边界融合到背景中。像这样:
这是我的代码:
Stack(
alignment: AlignmentDirectional.centerStart,
children: <Widget>[
Container(
decoration: BoxDecoration(
image: DecorationImage(
image: AssetImage(
"assets/img/share_pic.jpg"),
fit: BoxFit.cover),
),
//color: Theme.of(context).cardColor,
height: 280,
),
BackdropFilter(
filter:
ImageFilter.blur(sigmaX: 0, sigmaY:0),
child: Container(
height: 280,
color: Colors.black.withOpacity(0.4),
//height: 110,
),
),
Text("hello"),
]),