How to fix icons in AppBar when changing toolbarHeight in Flutter?
This is my app bar with one line text: appBar: AppBar( title: Text("Summer Trip"), centerTitle: true, actions: [ PopupMenuButton( itemBuilder: (context){ return [ PopupMenuItem<int>( value: 0, child: Text("Test"), ), ]; }, ), ], ), And it gives the following result:…