How to remove extra padding around AppBar leading icon in Flutter

后端 未结 8 1189
陌清茗
陌清茗 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条回答
  •  旧时难觅i
    2020-12-09 09:05

    If you use Widgets from Material package, they are defined respecting Material Design specification document. So if your modification violates this spec, you have to build your own Widget instead of using the Material Widgets.

提交回复
热议问题