切换应用程序时如何更改应用程序窗口中显示的颜色

时间:2018-12-04 22:45:37

标签: android dart flutter

我想在不更改ThemeData中的primaryColor的情况下更改面板颜色(我不知道它叫什么,请检查照片)。

enter image description here

我正在为这个项目使用Flutter。可以在flutter本身中完成此操作,还是我需要在android代码中完成此操作?

1 个答案:

答案 0 :(得分:0)

该面板通常称为 AppBar

当您返回Screen类的支架时,可以通过分配appBar backgroundColor来更改其颜色。

这里是一个简单的示例:

appBar: AppBar(
  backgroundColor: Colors.green
)

Here is a link to the Scaffold class

请同时浏览AppBar class提供的属性。