Build: Simple ListTile Screen
This screen shows a list of items using ListTile widgets. Each ListTile has a leading icon, a title, a subtitle, and a trailing icon.
Target UI
------------------------- | List of Items | |-----------------------| | [icon] Item 1 | | Subtitle 1 | | [> ] | |-----------------------| | [icon] Item 2 | | Subtitle 2 | | [> ] | |-----------------------| | [icon] Item 3 | | Subtitle 3 | | [> ] | -------------------------
Use a ListView to show three ListTile widgets stacked vertically.
Each ListTile must have a leading icon (use Icons.star).
Each ListTile must have a title with text 'Item 1', 'Item 2', 'Item 3' respectively.
Each ListTile must have a subtitle with text 'Subtitle 1', 'Subtitle 2', 'Subtitle 3' respectively.
Each ListTile must have a trailing icon (use Icons.arrow_forward).
The screen must have an AppBar with title 'ListTile Example'.