📜  添加阴影到容器 - CSS 代码示例

📅  最后修改于: 2022-03-11 14:47:44.093000             🧑  作者: Mango

代码示例1
boxShadow: [
      BoxShadow(
        color: Colors.grey.withOpacity(0.5),
        spreadRadius: 5,
        blurRadius: 7,
        offset: Offset(0, 3), // changes position of shadow
      ),
    ],