A complete guide to Flutter’s ListTile

Suragch
4 min readJan 22, 2019

A ListTile is generally what you use to populate a ListView in Flutter. In this post I will cover all of the parameters with visual examples to make it clear. Scroll down to the end to see the code in context.

title

The title can take any widget, but it is generally going to be a Text widget.

ListTile(
title: Text('Horse'),
)

--

--