How to remove extra padding around AppBar leading icon in Flutter

后端 未结 8 1191
陌清茗
陌清茗 2020-12-09 08:33

In my Flutter app, I have this AppBar

Widget setAppBar(){
  return new AppBar(
    title: addAppBarTextWidget(\'Explore\'),
    elevation: 0.0,
    leading:          


        
8条回答
  •  不知归路
    2020-12-09 08:55

    You can try this, this works fine. when you set the leading = null then extra space of leading widget will remove.

    appBar: new AppBar(
            leading: null,
            titleSpacing: 0.0,
            title: new Text("title"),
          ),
    

提交回复
热议问题