如何在我的 Flutter 应用中添加渐变背景?
Posted
技术标签:
【中文标题】如何在我的 Flutter 应用中添加渐变背景?【英文标题】:How do I add a gradient background in my flutter app? 【发布时间】:2021-02-27 19:58:15 【问题描述】:我想要在我的 Flutter 应用背景中使用 Liner 渐变颜色样式,如何在我的 Flutter 应用中实现它?
【问题讨论】:
【参考方案1】:你可以简单地在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 应用中添加渐变背景?的主要内容,如果未能解决你的问题,请参考以下文章