How to remove extra padding around AppBar leading icon in Flutter

后端 未结 8 1182
陌清茗
陌清茗 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:02

    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,
    )
    

提交回复
热议问题