Flutter 添加阴影效果
Posted yjpjy
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Flutter 添加阴影效果相关的知识,希望对你有一定的参考价值。
Container( width: double.infinity, height: ScreenUtil.getInstance().setHeight(500), decoration: BoxDecoration( color: Colors.white, borderRadius: BorderRadius.circular(8.0), boxShadow: [ BoxShadow( color: Colors.black12, offset: Offset(0.0, 15.0), //阴影xy轴偏移量 blurRadius: 15.0, //阴影模糊程度 spreadRadius: 1.0 //阴影扩散程度 ) ]), )
以上是关于Flutter 添加阴影效果的主要内容,如果未能解决你的问题,请参考以下文章