How to remove extra padding around AppBar leading icon in Flutter

后端 未结 8 1190
陌清茗
陌清茗 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 09:00

    just set titleSpacing and automaticallyImplyLeading for remove space

    like

    AppBar(
            titleSpacing: 0,
            automaticallyImplyLeading: false,
    )
    

提交回复
热议问题