icon position flutter on appbar code example
Example 1: how to add icon in the app bar in flutter
AppBar( title: Text("Hello Appbar"), leading: Icon( Icons.menu, ),);
Example 2: flutter appbar icon center
appBar: AppBar(centerTitle: true, title: AppImages.logoSvg)