gpt4 book ai didi

flutter - Flutter 中 FloatingActionButton 的渐变背景

转载 作者:行者123 更新时间:2023-12-03 22:56:50 26 4
gpt4 key购买 nike

是否可以将 FAB 的背景颜色设置为渐变而不是纯色?
我的按钮:

floatingActionButton: FloatingActionButton(
backgroundColor: const Color(0xFFFF006E),
child: const Icon(Icons.add, size: 40.0),
onPressed: () {
print('Start');
},
),

最佳答案

floatingActionButton: FloatingActionButton(
child: Container(
width: 60,
height: 60,
child: Icon(
Icons.add,
size: 40,
),
decoration: BoxDecoration(
shape: BoxShape.circle,
gradient: LinearGradient(colors: [Colors.red, Colors.blue])
),
),
onPressed: () {},
)

关于flutter - Flutter 中 FloatingActionButton 的渐变背景,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62391746/

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