gpt4 book ai didi

android - 如何在 flutter 中设置盒子阴影

转载 作者:行者123 更新时间:2023-12-04 00:12:41 24 4
gpt4 key购买 nike

我有一个 figma 设计,我需要像这样设置盒子阴影。

Drop shadow
x 0, y : 1, B: 5, S: 0, #000000 30%
Drop Shadow

最佳答案

使用 Container小部件并设置 boxShadow来自其 decoration 的属性(property)属性(property)。
代码示例

Container(
height: 75,
width: 150,
decoration: BoxDecoration(
color: Colors.white,
borderRadius: BorderRadius.circular(12),
boxShadow: [
BoxShadow(
offset: Offset(0, 1),
blurRadius: 5,
color: Colors.black.withOpacity(0.3),
),
],
),
);
截图
enter image description here
Try the full code on DartPad

关于android - 如何在 flutter 中设置盒子阴影,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/67427197/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com