我正在尝试使用#topBar{
background-color: #333333;
height: 40px;
width: 100%;
margin: 0px ;
}
#logo{
height: 50px;
width: 50px;
position: fixed;
margin-top: 10px;
}
和AppBar
小部件来实现自定义PreferredSize
。结果如下:
但是,当我向下滚动时,AppBar布局会覆盖背景(这是支架的Card
部分),如下所示:
查看第二张屏幕截图: 自定义AppBar涵盖了其下的所有内容。有办法防止这种情况吗?
顺便说一下,这些示例图像来自附加在body
的{{1}}上的StreamBuilder
小部件。
这是代码:
body
感谢您的回答!