Build: Simple List Screen
This screen shows a scrollable list of 20 items using ListView.builder. Each item displays its number.
Target UI
------------------------- | Simple List Screen | ------------------------- | Item 1 | |-----------------------| | Item 2 | |-----------------------| | Item 3 | | ... | |-----------------------| | Item 20 | -------------------------
Use ListView.builder to create a scrollable list.
Display 20 items labeled 'Item 1' to 'Item 20'.
Each item should be a ListTile with the item label as title.