如何使图像的边界融合到背景中?

时间:2019-02-15 13:55:44

标签: flutter

当前这是我的照片。

enter image description here

我正在将Stack小部件与BackDropFilter一起使用。我想将图像的边界融合到背景中。像这样:

enter image description here

这是我的代码:

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"),

                ]),

0 个答案:

没有答案