Build: Collections Demo
This screen shows examples of Kotlin collections: List, Map, and Set. It displays each collection's content in a simple vertical list.
Target UI
------------------------- | Collections Demo | |-----------------------| | List: | | - Apple | | - Banana | | - Cherry | | | | Map: | | Key: 1, Value: One | | Key: 2, Value: Two | | | | Set: | | - Red | | - Green | | - Blue | -------------------------
Display a List of strings with three fruit names.
Display a Map with integer keys and string values.
Display a Set of strings with three color names.
Use Kotlin collection types: List, Map, Set.
Show each collection's items in a vertical Column.
Use Text composables for displaying items.