我是初次接触并探索它。我已经有一个应用程序栏,但似乎无法弄清楚如何在其上正确显示抽屉图标和搜索图标。我希望它看起来像gmail应用程序栏,如下图所示。我正在开发公司的技术支持移动应用程序。谢谢。
按照flutter文档中所述进行操作。
new AppBar( title: new Text('My Fancy Dress'), actions:[ new IconButton( icon: new Icon(Icons.playlist_play), tooltip: 'Air it', onPressed: _airDress, ),], leading: [ new IconButton( icon: new Icon(Icons.playlist_play), tooltip: 'Air it', onPressed: _airDress, ), ], )
最下面的小部件是抽屉,而最下面的小部件是搜索图标按钮。