diff options
| author | Fuwn <[email protected]> | 2025-02-13 02:44:02 -0800 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2025-02-13 02:44:02 -0800 |
| commit | 2e22626a5b994182a5c4990d042de1c3f73e47b3 (patch) | |
| tree | c7bc556b04d9092197ff366c3d1b9624dbccf62f /Tonbo/ContentView.swift | |
| download | tonbo-main.tar.xz tonbo-main.zip | |
Diffstat (limited to 'Tonbo/ContentView.swift')
| -rw-r--r-- | Tonbo/ContentView.swift | 59 |
1 files changed, 59 insertions, 0 deletions
diff --git a/Tonbo/ContentView.swift b/Tonbo/ContentView.swift new file mode 100644 index 0000000..b806ec4 --- /dev/null +++ b/Tonbo/ContentView.swift @@ -0,0 +1,59 @@ +import SwiftData +import SwiftUI + +struct ContentView: View { + @Environment(\.modelContext) private var modelContext + @Query private var items: [Item] + + var body: some View { + NavigationSplitView { + List { + ForEach(items) { item in + NavigationLink { + Text("Item at \(item.timestamp, format: Date.FormatStyle(date: .numeric, time: .standard))") + } label: { + Text(item.timestamp, format: Date.FormatStyle(date: .numeric, time: .standard)) + } + } + .onDelete(perform: deleteItems) + } + #if os(macOS) + .navigationSplitViewColumnWidth(min: 180, ideal: 200) + #endif + .toolbar { + #if os(iOS) + ToolbarItem(placement: .navigationBarTrailing) { + EditButton() + } + #endif + ToolbarItem { + Button(action: addItem) { + Label("Add Item", systemImage: "plus") + } + } + } + } detail: { + Text("Select an item") + } + } + + private func addItem() { + withAnimation { + let newItem = Item(timestamp: Date()) + modelContext.insert(newItem) + } + } + + private func deleteItems(offsets: IndexSet) { + withAnimation { + for index in offsets { + modelContext.delete(items[index]) + } + } + } +} + +#Preview { + ContentView() + .modelContainer(for: Item.self, inMemory: true) +} |