为什么颜色不变?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了为什么颜色不变?相关的知识,希望对你有一定的参考价值。
想要改变RaisedButton
的颜色。它不起作用,我也没有任何错误。
RaisedButton(
onPressed: null,
color: Colors.red,
)
答案
Tirth是对的,但是如果您想要禁用该按钮,您可以像这样更改按钮的颜色
RaisedButton(
onPressed: null,
disabledColor: Colors.red,
);
另一答案
因为你已经将onPressed
设置为null
,所以按钮被禁用。在那里设置方法调用或匿名函数。
RaisedButton(
color: Colors.red,
onPressed: () => print("Press");
);
以上是关于为什么颜色不变?的主要内容,如果未能解决你的问题,请参考以下文章