Build: Dynamic List Screen
This screen shows a list that updates dynamically when you add new items. It helps you understand why lists are good for showing changing content.
Target UI
------------------------- | Dynamic List Screen | ------------------------- | + Add Item | |-----------------------| | 1. Item 1 | | 2. Item 2 | | 3. Item 3 | | | -------------------------
Show a list of text items that can grow
Add a button labeled '+ Add Item' at the top
When the button is tapped, add a new item to the list
The list updates immediately to show the new item
Use SwiftUI List to present the items dynamically