我在我的颤振应用程序中添加了AppBar 。我的屏幕已经有一个背景图像,我不想在其中设置 appBar 颜色或不想为 appBar 设置单独的背景图像。
我也想向 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
)),
)