Skip to content

Instantly share code, notes, and snippets.

@vikdenic
Created June 18, 2019 20:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vikdenic/c79020a82d5fba4cce4b7f1e56aaf3ce to your computer and use it in GitHub Desktop.
Save vikdenic/c79020a82d5fba4cce4b7f1e56aaf3ce to your computer and use it in GitHub Desktop.
Dynamic and Static List Content with SwiftUI
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