flutter 修饰盒子

 

                  decoration: BoxDecoration(
                      borderRadius: BorderRadius.circular(30), //圆角
                      gradient: RadialGradient(
                          colors: [Colors.red, Colors.green]), //渐变效果
                      boxShadow: [
                        //阴影
                        BoxShadow(
                            offset: Offset(6.0, 7.0), //偏移量
                            color: Colors.black45, //颜色
                            blurRadius: 5.0, //模糊程度
                            spreadRadius: -1.0) //扩散程度
                      ])

 

posted @ 2019-05-17 11:35  富坚老贼  阅读(308)  评论(0编辑  收藏  举报