9Cells

ListTile

예제

ListTile 예제
ListTile(
  title: Text(
    'title',
    style: TextStyle(fontWeight: FontWeight.w900),
  ),
  subtitle: Text('subtitle'),
  leading: Icon(
    Icons.restaurant_menu,
    color: Colors.blue[900],
  ),
)