Flutter - 未定义命名参数“backgroundColor”

问题描述 投票:0回答:1

升级 Flutter 版本后,我在背景颜色中遇到此错误

enter image description here

ThemeData(
...
...
...
 
     backgroundColor: Colors.white,

...
...
...);

我该如何解决我的问题?问题似乎是关于flutter版本升级的。你怎么认为?任何帮助将不胜感激。

flutter dart color-scheme
1个回答
0
投票
  Use colorScheme.background instead.
  This feature was deprecated after v3.3.0-0.5.pre.

enter image description here

© www.soinside.com 2019 - 2024. All rights reserved.