Created
June 18, 2019 20:27
-
-
Save vikdenic/c79020a82d5fba4cce4b7f1e56aaf3ce to your computer and use it in GitHub Desktop.
Dynamic and Static List Content with SwiftUI
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
List { | |
Button(action: {}) { | |
Text("Add Room") | |
} | |
ForEach(store.rooms) { room in | |
RoomCell(room: room) | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment