我想在不更改ThemeData中的primaryColor的情况下更改面板颜色(我不知道它叫什么,请检查照片)。
我正在为这个项目使用Flutter。可以在flutter本身中完成此操作,还是我需要在android代码中完成此操作?
答案 0 :(得分:0)
该面板通常称为 AppBar 。
当您返回Screen类的支架时,可以通过分配appBar backgroundColor
来更改其颜色。
这里是一个简单的示例:
appBar: AppBar(
backgroundColor: Colors.green
)
Here is a link to the Scaffold class
请同时浏览AppBar class提供的属性。