how to do if more then 2 line we need to add one down arrow icon on tap of that icon we should should other text using flutter code example
Example: 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")
)