In my Flutter app, I have this AppBar
Widget setAppBar(){ return new AppBar( title: addAppBarTextWidget(\'Explore\'), elevation: 0.0, leading:
AppBar( leading: Transform.translate( offset: Offset(-15, 0), child: Icon(Icons.android), ), titleSpacing: -30, centerTitle: false, title: Text("Title"), )
If you don't want to use any leading widget:
AppBar( title: Text('Title'), centerTitle: false, titleSpacing: 0, )