在flutter中,给一个container四周加上阴影
时间: 2023-04-08 17:03:32 浏览: 288
可以使用Container的decoration属性来添加阴影效果,示例代码如下:
```
Container(
decoration: BoxDecoration(
boxShadow: [
BoxShadow(
color: Colors.grey.withOpacity(0.5),
spreadRadius: 5,
blurRadius: 7,
offset: Offset(0, 3),
),
],
),
child: // your child widget here
)
```
这段代码会在Container周围添加一层灰色的阴影效果。你可以根据需要调整阴影的颜色、大小、偏移等参数。
阅读全文