最佳答案
我已经在颤振应用程序中添加了 AppBar。我的屏幕已经有一个背景图像,其中我不想设置应用程序栏颜色或不想设置单独的背景图像应用程序栏。
我想显示相同的屏幕背景图像到应用程序栏也。
我已经尝试将 appBar 的颜色设置为透明,但它显示的颜色像灰色。
示例代码:
appBar: new AppBar(
centerTitle: true,
// backgroundColor: Color(0xFF0077ED),
elevation: 0.0,
title: new Text(
"DASHBOARD",
style: const TextStyle(
color: const Color(0xffffffff),
fontWeight: FontWeight.w500,
fontFamily: "Roboto",
fontStyle: FontStyle.normal,
fontSize: 19.0
)),
)