其他分享
首页 > 其他分享> > Flutter如何去除AppBar阴影

Flutter如何去除AppBar阴影

作者:互联网

之前,AppBar有阴影,如下图所示:

Scaffold(
      appBar: AppBar(
        title: 'Flutter Demo Home Page',
      ),
      //省略代码块
      ......
)

设置elevation属性为0,即去掉之前的AppBar阴影,如下图所示:

Scaffold(
      appBar: AppBar(
        title: 'Flutter Demo Home Page',
        elevation: 0
      ),
      //省略代码块
      ......
)

【作者声明】

本篇经验系本人依照真实经历原创,需要转载到博客、自媒体平台、技术网站等,未经许可,严格遵守本人的知识版权,谢绝转载。如想转载,请联系本人授权。

联系邮箱:3403978592@qq.com

【​​​关注公众号】

在微信搜索框里输入"未来众创聚集地",并点击【搜索】按钮,接下来选中名为"未来众创聚集地"的公众号列表后,直接关注本人的公众号即可。

 

标签:title,......,Flutter,去除,Scaffold,本人,AppBar
来源: https://blog.csdn.net/qq_29901385/article/details/120246976