Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我一直在努力寻找一种基于动作图标大小及其填充来适应 AppBar 高度的方法。当为前导和操作图标提供填充时,它们会被 AppBar 覆盖。有没有什么方法可以实现这个功能?这就是它应该如何工作
您可以尝试根据设备高度设置应用栏高度
appBar: PreferredSize( preferredSize: Size.fromHeight(MediaQuery.of(context).size.height * 0.2), // here the desired height child: AppBar( // ... ) ),