Answers for "image in listtile"

2

leading image flutter

ListTile(
  leading: CircleAvatar(
    backgroundImage: Image.file(file),
    child: GestureDetector(onTap: () {}),
    ),
// (...)
);
Posted by: Guest on September-11-2020
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

Code answers related to "image in listtile"

Code answers related to "Dart"

Browse Popular Code Answers by Language