xxxxxxxxxx
ListTile(
title: Text('Example ListTile'),
tileColor: Colors.blue, // Replace 'blue' with the desired color
),
xxxxxxxxxx
ListTile(
tileColor: Colors.blue[100], // Defines the background color of ListTile when selected is false.
leading: FlutterLogo(),
title: Text('ListTile'),
),