gpt4 book ai didi

flutter - 在 flutter 中使用梯度角

转载 作者:行者123 更新时间:2023-12-04 08:40:05 25 4
gpt4 key购买 nike

我需要创建渐变 bg 之类的
enter image description here
带有 css 代码

.rectangle {
height: 864px;
width: 384px;
border-radius: 10px;
background: linear-gradient(220.25deg, #2BB88B 0%, #07909B 35.17%, #035762 100%);
}
我试过
LinearGradient(
begin: Alignment.topRight,
colors: const <Color>[
Color(0xFF2BB88B),
Color(0xFF07909B),
Color(0xFF035762)
],
/*stops: [
0,
0.35,
0.1
]*/)
但它没有按预期工作。我也尝试过 SweepGradient,但也没有奏效。

最佳答案

你有没有尝试给它'end'属性?
结束:Alignment.bottomRight 或结束:Alignment.bottomLeft,

LinearGradient(
begin: Alignment.topRight,
end : Alignment.bottomRight,
colors: const <Color>[
Color(0xFF2BB88B),
Color(0xFF07909B),
Color(0xFF035762)
],
/*stops: [
0,
0.35,
0.1
]*/)

关于flutter - 在 flutter 中使用梯度角,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/64617391/

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