Skip to content

Instantly share code, notes, and snippets.

@vikdenic
Created June 18, 2019 20:27

Revisions

  1. vikdenic created this gist Jun 18, 2019.
    8 changes: 8 additions & 0 deletions ContentView.swift
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,8 @@
    List {
    Button(action: {}) {
    Text("Add Room")
    }
    ForEach(store.rooms) { room in
    RoomCell(room: room)
    }
    }