Build: Dynamic List Screen
This screen shows a list that updates automatically when new items are added. It helps understand how lists can display changing data in Flutter.
Target UI
------------------------- | Dynamic List Screen | ------------------------- | + Add Item | |-----------------------| | Item 1 | | Item 2 | | Item 3 | | | | | -------------------------
Display a list of text items that can grow dynamically.
Add a button labeled '+ Add Item' at the top.
When the button is tapped, add a new item to the list with the next number.
The list should update immediately to show the new item.
Use a StatefulWidget to manage the list data.