I want to have an IconButton below title of an AppBar. I tried Column, but I had problem with center all items there and with overflowing bottom.
My Code:
appBar: new AppBar( title: Column( children: <Widget>[ new Text('App Title'), IconButton( icon: new Icon(new IconData(0xe902, fontFamily: 'Ionicons')), onPressed: () {}, ) ], ), centerTitle: true, actions: <Widget>[ IconButton( icon: new Icon(new IconData(0xe906, fontFamily: 'Ionicons')), onPressed: () {}, ) ], ), 