最佳答案
我有以下代码片段,我想使图像褪色,以便它不干扰容器中的其他项目。 有没有什么过滤器可以做到这一点?
child: new Card(
child: new Container(
decoration: new BoxDecoration(
color: const Color(0xff7c94b6),
image: new DecorationImage(
image: new ExactAssetImage('lib/images/pic1.jpg'),
)
)
)
)