我有一个BottomAppBar
,我想通过以下方式对齐其中的项目:
前2个(IconButtons)
应该放在行的开头,第3个(芯片包裹在GestureDetector
中)应该放在屏幕中间,最后一个(Logo -> Image)
应该放在屏幕中间。行的结尾。
我试图通过计算左填充来解决此问题,但不幸的是,我不知道如何访问IconButtons
和Chips
的宽度。
这些项目是否有类似MediaQuery.of(context).size.width
或appBar.preferredSize.height
的方式?使用垫片或CrossAxisAlignment不能解决问题。