扑框阴影

时间:2020-08-31 14:43:27

标签: flutter flutter-layout

我正在尝试为带有svg图像的孩子的墨水瓶开发阴影属性。

这就是我要完成的工作:enter image description here

这就是我得到的:enter image description here

我可以在这方面获得帮助吗?这是我的代码:

new InkWell(
                  onTap: _googleSignIn,
                  child: Container(
                    height: 60,
                    width: 60,
                    decoration: BoxDecoration(
                        color: Hexcolor('#e9f1fe'),
                        shape: BoxShape.circle,
                        boxShadow: [
                          BoxShadow(
                              color: Hexcolor('#C5D6F2'),
                              offset: Offset(6.0, 6.0),
                              blurRadius: 8.0,
                              spreadRadius: 1.0),
                          BoxShadow(
                              color: Colors.white,
                              offset: Offset(-4.0, -4.0),
                              blurRadius: 15.0,
                              spreadRadius: 1.0),
                        ]),
                    child: SvgPicture.asset('assets/icon/google.svg',fit: BoxFit.fill,),
                  )),

1 个答案:

答案 0 :(得分:0)

尝试更改偏移量

offset: Offset(0.0, 0.0),