From ed86502d27d6f03cbdee0d4c2d34cd4b0a6a3d3e Mon Sep 17 00:00:00 2001 From: ivar Date: Mon, 23 Mar 2026 16:53:58 +0100 Subject: feat: add InfoScreenView with upcoming events and sun times --- Solverv/ContentView.swift | 53 +++++++++++------------------------------------ 1 file changed, 12 insertions(+), 41 deletions(-) (limited to 'Solverv/ContentView.swift') 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) } -- cgit v1.3