阴影

Posted by アライさん on 2020年12月14日

自定义阴影效果

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
Container(
decoration: BoxDecoration(
borderRadius: BorderRadius.all(
Radius.circular(100),
),
boxShadow: [
BoxShadow(
color: Colors.red,
spreadRadius: 7,//大小
blurRadius: 7,//模糊程度(透明扩散)
offset: Offset(3, 5),//阴影位置
),
],
),
child: Icon(
Icons.camera_alt,
color: Colors.white,
size: 60.w,
),
),