如何去掉Appbar下面的小线?

Dav*_*vid 5 flutter

颤动 1.12.13+hotfix.8

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

在此输入图像描述

代码:

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),
);
Run Code Online (Sandbox Code Playgroud)

小智 0

我在网络、iPhone模拟器、Android模拟器和我的Android手机中尝试了你的代码,没有得到任何白色细线。我现在正在开发 flutter beta。也许您的问题可以通过升级 flutter 或切换频道来解决。