VScode无法识别颜色( Flutter )
未定义命名参数“color”。请尝试将名称更正为现有命名参数的名称,或使用名称“color”定义命名参数。dartundefined_
enter image description here
我尝试了很多搜索和做所有的事情,从我的结束一样,清洁和重新启动。
VScode无法识别颜色( Flutter )
未定义命名参数“color”。请尝试将名称更正为现有命名参数的名称,或使用名称“color”定义命名参数。dartundefined_
enter image description here
我尝试了很多搜索和做所有的事情,从我的结束一样,清洁和重新启动。
2条答案
按热度按时间bvpmtnay1#
ElevatedButton
没有颜色属性。此构件具有以下颜色控制属性:
backgroundColor
,foregroundColor
,overlayColor
,shadowColor
,surfaceTintColor
.要配置它们,请添加属性:
style: ButtonStyle(...)
,elcex8rz2#
检查documentation of
ElevatedButton
.它没有 color 属性。
当您在Visual Studio上工作时,您可以始终将鼠标悬停在类名上,它将给予该小部件的所有属性的列表。