In my Flutter app, I have this AppBar
Widget setAppBar(){ return new AppBar( title: addAppBarTextWidget(\'Explore\'), elevation: 0.0, leading:
just set titleSpacing and automaticallyImplyLeading for remove space
titleSpacing
automaticallyImplyLeading
like
AppBar( titleSpacing: 0, automaticallyImplyLeading: false, )