Answers for "how to change color of listtile in flutter"

1

flutter listtile color

ListTile(
              tileColor: Colors.blue[100], // Defines the background color of ListTile when selected is false.
              leading: FlutterLogo(),
              title: Text('ListTile'),
            ),
Posted by: Guest on August-25-2021
0

change the Background Color of ListTile

ListTile(
        selected: _isSelected,
        tileColor: Colors.blue,
        selectedTileColor: Colors.greenAccent,
)
Posted by: Guest on December-09-2021

Code answers related to "how to change color of listtile in flutter"

Code answers related to "Dart"

Browse Popular Code Answers by Language