Visual Studio 没有为ElevatedButton定义命名参数“color”

acruukt9  于 2022-12-19  发布在  其他
关注(0)|答案(2)|浏览(124)

VScode无法识别颜色( Flutter )
未定义命名参数“color”。请尝试将名称更正为现有命名参数的名称,或使用名称“color”定义命名参数。dartundefined_
enter image description here
我尝试了很多搜索和做所有的事情,从我的结束一样,清洁和重新启动。

bvpmtnay

bvpmtnay1#

ElevatedButton没有颜色属性。
此构件具有以下颜色控制属性:

  • backgroundColor
  • foregroundColor
  • overlayColor
  • shadowColor
  • surfaceTintColor.

要配置它们,请添加属性:style: ButtonStyle(...)

elcex8rz

elcex8rz2#

检查documentation of ElevatedButton .
它没有 color 属性。
当您在Visual Studio上工作时,您可以始终将鼠标悬停在类名上,它将给予该小部件的所有属性的列表。

相关问题