blob: 38c6153b71100fef4c08ca4647576e9343acd7d9 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
//
// ContentView.swift
// Solverv
//
// Created by Ivar Løvlie on 15/12/2025.
//
import SwiftUI
struct ContentView: View {
var body: some View {
NavigationStack {
VStack {
Text("Solstice Countdown")
.font(.title)
NavigationLink(destination: InfoScreenView()) {
Label("View Details", systemImage: "info.circle")
.padding()
.background(Color.blue)
.foregroundColor(.white)
.cornerRadius(8)
}
}
.navigationTitle("Home")
}
}
}
#Preview {
ContentView()
}
|