【发布时间】:2021-02-28 22:34:15
【问题描述】:
https://i.stack.imgur.com/LPLE4.png
我需要添加iconbutton appbar flutter
【问题讨论】:
-
和图片一样
-
您能指定要添加哪个按钮吗?是汉堡包(菜单)按钮还是加号(+)按钮?
https://i.stack.imgur.com/LPLE4.png
我需要添加iconbutton appbar flutter
【问题讨论】:
如果你的意思是 appBar 中的前导 iconButton 你可以在你的脚手架中添加这段代码
appBar:AppBar(leading:IconButton(icon:Icon(Icons.menu),onPressed:(){})),
【讨论】: