0

我一直在努力寻找一种基于动作图标大小及其填充来适应 AppBar 高度的方法。当为前导和操作图标提供填充时,它们会被 AppBar 覆盖。有没有什么方法可以实现这个功能?这就是它应该如何工作

4

1 回答 1

0

您可以尝试根据设备高度设置应用栏高度

 appBar: PreferredSize(
          preferredSize: Size.fromHeight(MediaQuery.of(context).size.height * 0.2), // here the desired height
          child: AppBar(
            // ...
          )
        ),
于 2021-07-14T14:58:12.520 回答