Answers for "background 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
7

flutter list tile

ListTile(
  leading: const Icon(Icons.flight_land),
  title: const Text("Trix's airplane"),
  subtitle: const Text('The airplane is only in Act II.'),
  onTap: () => print("ListTile")
)
Posted by: Guest on May-10-2020

Code answers related to "background listtile in flutter"

Code answers related to "Dart"

Browse Popular Code Answers by Language