gpt4 book ai didi

flutter - 如何在我的 Flutter 应用程序中添加渐变背景?

转载 作者:行者123 更新时间:2023-12-05 09:36:52 28 4
gpt4 key购买 nike

我想在我的 flutter 应用程序背景中使用 Liner 渐变颜色样式,如何在我的 flutter 应用程序中实现它?

最佳答案

您可以简单地在 BoxDecoration 中使用正确的参数

https://api.flutter.dev/flutter/painting/LinearGradient-class.html

Container(
decoration: BoxDecoration(
gradient: LinearGradient(
begin: Alignment.topLeft,
end:
Alignment(0.8, 0.0), // 10% of the width, so there are ten blinds.
colors: [
const Color(0xffee0000),
const Color(0xffeeee00)
], // red to yellow
tileMode: TileMode.repeated, // repeats the gradient over the canvas
),
),
);

关于flutter - 如何在我的 Flutter 应用程序中添加渐变背景?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/64861076/

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