Remove padding from ListTile between leading and title

You can use the minLeadingWidth on your ListTile.
The default value is 40, so you can use a lower value to make your leading and title come closer.

ListTile(
  leading : Icon(Icons.settings),
  title : Text("Settings"),
  minLeadingWidth : 10,
);

Leave a Comment