Answers for "flutter image in listtile"

0

adding image in ListTile flutter

ListTile(
  leading: CircleAvatar(
    backgroundImage: AssetImage(
      "image.png",
    ), 
  ),
  tileColor: widget.color,
  title: widget.title,
  subtitle: Text(
    widget.subtitle,
    style: TextStyle(color: Colors.black.withOpacity(0.6)),
  ),
),
Posted by: Guest on August-13-2021
2

listtile flutter

ListTile(
                    tileColor: Colors.white,
                    leading: Image(
                      image: NetworkImage(
                          'https://jardin-secrets.com/image.php?/12435/photo-dracaena-fragrans_krzysztof-ziarnek.jpg'),
                    ),
                    title: Text("Dragonnier"),
                    subtitle: Text("Dracaena"),
                    isThreeLine: true,
                    trailing: Icon(Icons.more_vert)
                ),
Posted by: Guest on June-05-2021

Code answers related to "Dart"

Browse Popular Code Answers by Language