美文网首页
Flutter 边框阴影

Flutter 边框阴影

作者: 赵哥窟 | 来源:发表于2021-04-22 14:16 被阅读0次
截屏2021-04-22 14.15.22.png

要实现如果的边框阴影效果

Container(
      height: ScreenAdaper.width2px(78),
      decoration: BoxDecoration(
        border: new Border.all(
          color: Colors.grey.withOpacity(0.2), //边框颜色
          width: 1, //边框宽度
        ), // 边色与边宽度
        color: Colors.white, // 底色
        boxShadow: [
          BoxShadow(
            blurRadius: 10, //阴影范围
            spreadRadius: 0.1, //阴影浓度
            color: Colors.grey.withOpacity(0.2), //阴影颜色
          ),
        ],
        borderRadius: BorderRadius.circular(10), 
      ),
    );

相关文章

网友评论

      本文标题:Flutter 边框阴影

      本文链接:https://www.haomeiwen.com/subject/deaxrltx.html