gpt4 book ai didi

flutter - 如何删除Appbar下方的小线?

转载 作者:行者123 更新时间:2023-12-04 10:30:01 28 4
gpt4 key购买 nike

Flutter 1.12.13+hotfix.8

Appbar 下方有一条细线。你知道如何摆脱它吗?

enter image description here

代码:

return Scaffold(
backgroundColor: Colors.white,
appBar: AppBar(
backgroundColor: Colors.blue,
elevation: 0.0,
actions: <Widget>[
FlatButton(
onPressed: () async {
await _authService.signOut();
},
child: Icon(
Icons.exit_to_app,
color: Colors.white,
),
),
],
),
body: Container(
height: MediaQuery.of(context).size.height,
width: MediaQuery.of(context).size.width,
color: Colors.blue),
);

最佳答案

将脚手架 backgroundColor 指定为与​​您的 AppBar backgroundColor 相同的颜色将解决问题(在您的情况下,以下代码)
要为应用程序的其余部分提供您想要的颜色,您可以将其包含在包含主体的容器的主体颜色中

return Scaffold(
backgroundColor: Colors.blue,//changed background color of scaffold
appBar: AppBar(
backgroundColor: Colors.blue,
elevation: 0.0,
actions: <Widget>[
FlatButton(
onPressed: () async {
await _authService.signOut();
},
child: Icon(
Icons.exit_to_app,
color: Colors.white,
),
),
],
),
body: Container(
height: MediaQuery.of(context).size.height,
width: MediaQuery.of(context).size.width,
color: Colors.blue),
);

关于flutter - 如何删除Appbar下方的小线?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60459692/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com