如何在我的 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 应用中添加渐变背景?的主要内容,如果未能解决你的问题,请参考以下文章

Flutter - 如何将图像与渐变颜色混合?

Flutter AppBar 上的渐变背景

如何将一块div为黑色背景 渐变成上黑下部透明的?

使用div+css实现背景颜色渐变,怎么实现呢?

css如何实现真正的网页渐变背景

如何使用java设置LinearLayout背景为渐变色