Flutter beta.
Docs say ListTiles are all the same height, and all 1–3 lines high. When I build ListTiles with subtitle property containing a very length Text object, those ListTiles are wayyyy taller than three lines and certainly not of equal height like the docs say they're supposed to (even if you construe "three lines" as "three spans of text separated by \n".
See screenshot. These are two ListTiles.

Relevant code:
new ListView(
shrinkWrap: true,
scrollDirection: Axis.vertical,
ListTile.divideTiles(
color: Colors.deepOrange,
tiles: items.map((item) {
return _buildRow(item);
}).toList()
).toList()
)
Widget _buildRow(Item item) {
return new Dismissible(
key: new Key(item.id.toString()),
//...
child: new Padding(
child: new ListTile(
title: new Text(item.title),
subtitle: new Text(item.content),
textAlign: TextAlign.justify
)
//...
)
);
}
Flutter beta.
Docs say
ListTilesare all the same height, and all 1–3 lines high. When I buildListTileswith subtitle property containing a very length Text object, thoseListTilesare wayyyy taller than three lines and certainly not of equal height like the docs say they're supposed to (even if you construe "three lines" as "three spans of text separated by \n".See screenshot. These are two ListTiles.
Relevant code: