gpt4 book ai didi

dart - Flutter:FloatingActionButton 阴影

转载 作者:行者123 更新时间:2023-12-03 02:57:05 40 4
gpt4 key购买 nike

你能或者有办法改变FloatingActionButton.extended产生的阴影的颜色吗?或任何其他 float 按钮?

最佳答案

enter image description here
你可以试试这个方法:

floatingActionButton: FloatingActionButton(
onPressed: () {},
backgroundColor: Colors.red,
elevation: 0,
child: Container(
decoration: BoxDecoration(
color: Colors.transparent,
borderRadius: BorderRadius.all(
Radius.circular(100),
),
boxShadow: [
BoxShadow(
color: Colors.purple.withOpacity(0.3),
spreadRadius: 7,
blurRadius: 7,
offset: Offset(3, 5),
),
],
),
),
),

关于dart - Flutter:FloatingActionButton 阴影,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51583184/

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