我如何在抖动上创建自定义阴影?

时间:2020-06-09 12:49:37

标签: user-interface flutter dart flutter-layout flutter-dependencies

我要为图像的边缘提供阴影,而我用boxshadow给出的阴影是方形阴影。我不希望这种形状。我只希望阴影根据图像形成。我能怎么做 这是我的阴影代码:

 Container (

              decoration:BoxDecoration(

                image: DecorationImage(
                 image: 
                 AssetImage('images/image 2.png'),),
                boxShadow:[

                  BoxShadow(
                 color:Color.fromRGBO(0, 0, 0, 0.25), 
                  offset: Offset(0,4),
                  blurRadius:4,

                   ),
                   ],
              ),

             // child:Image.asset('images/image 2.png'),

             ),

这是我的用户界面: enter image description here

但是我不想这样 我该怎么办?

1 个答案:

答案 0 :(得分:0)

尝试通过编辑https://pub.dev/packages/shadow来使用它。

也许可以为复制的阴影图像添加滤色器