summaryrefslogtreecommitdiffstats
path: root/Solverv/ContentView.swift
diff options
context:
space:
mode:
Diffstat (limited to 'Solverv/ContentView.swift')
-rw-r--r--Solverv/ContentView.swift53
1 files changed, 12 insertions, 41 deletions
diff --git a/Solverv/ContentView.swift b/Solverv/ContentView.swift
index b82e2c7..38c6153 100644
--- a/Solverv/ContentView.swift
+++ b/Solverv/ContentView.swift
@@ -6,56 +6,27 @@
//
import SwiftUI
-import SwiftData
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)
- }
- .toolbar {
- ToolbarItem(placement: .navigationBarTrailing) {
- EditButton()
- }
- 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)
- }
- }
+ NavigationStack {
+ VStack {
+ Text("Solstice Countdown")
+ .font(.title)
- private func deleteItems(offsets: IndexSet) {
- withAnimation {
- for index in offsets {
- modelContext.delete(items[index])
+ NavigationLink(destination: InfoScreenView()) {
+ Label("View Details", systemImage: "info.circle")
+ .padding()
+ .background(Color.blue)
+ .foregroundColor(.white)
+ .cornerRadius(8)
+ }
}
+ .navigationTitle("Home")
}
}
}
#Preview {
ContentView()
- .modelContainer(for: Item.self, inMemory: true)
}