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