Flutter-线性渐变不将颜色作为颜色数组

时间:2020-10-06 14:38:35

标签: android ios flutter colors

我实际上是在准备登录屏幕,并决定使用线性渐变作为背景。 实际上,我已在稳定版中将Flutter SDK从1.20升级到1.22。 请点击下面的链接检查问题

The code

The error shown

显示我该怎么办。

谢谢。

2 个答案:

答案 0 :(得分:0)

您可以尝试使用此版本,可能版本不匹配。


Container(
        decoration: BoxDecoration(
            gradient: LinearGradient(
              begin: Alignment.topRight,
              end: Alignment.bottomLeft,
              colors: [Colors.blue, Colors.red])),
        child: Center(
          child: Text(
            'Hello Gradient!',
            style: TextStyle(
              fontSize: 48.0,
              fontWeight: FontWeight.bold,
              color: Colors.white),
          ),
        ),
      )

答案 1 :(得分:0)

在命令行中使用flutter cleanflutter pub cache repair, 然后重新启动ide