xxxxxxxxxx
ListTile(
horizontalTitleGap: 16.0, // The horizontal gap between the titles and the leading/trailing widgets.
leading: FlutterLogo(),
title: Text('ListTile'),
),
minLeadingWidth is the property you need, horizontalTitleGap doesn't work for me
xxxxxxxxxx
ListTile(
leading : Icon(Icons.settings),
title : Text("Settings"),
minLeadingWidth : 10,
);