【发布时间】:2020-06-13 00:40:37
【问题描述】:
Flutter 1.12.13+hotfix.8
Appbar 正下方有一条细线。你知道如何摆脱它吗?
代码:
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),
);
【问题讨论】:
-
我试过你的代码,但没有得到你说的任何一行,你能分享你的完整代码吗?
-
@HardikTalaviya,刚刚添加了“body”中的容器代码。顺便说一句,我在 Android 上,直接在设备上(不是模拟器)
-
我也在模拟器和设备上运行你的代码,但AppBar下方没有细线。
标签: flutter