我实际上是在准备登录屏幕,并决定使用线性渐变作为背景。 实际上,我已在稳定版中将Flutter SDK从1.20升级到1.22。 请点击下面的链接检查问题
显示我该怎么办。
谢谢。
答案 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 clean
和flutter pub cache repair
,
然后重新启动ide