From 3df3e852efd079105db17de99a2a3e1541e2ecc2 Mon Sep 17 00:00:00 2001 From: Matt Bruce Date: Sun, 7 Sep 2025 20:50:31 -0500 Subject: [PATCH] Signed-off-by: Matt Bruce --- TheNoiseClock/ContentView.swift | 34 +++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 TheNoiseClock/ContentView.swift diff --git a/TheNoiseClock/ContentView.swift b/TheNoiseClock/ContentView.swift new file mode 100644 index 0000000..a2a7fb1 --- /dev/null +++ b/TheNoiseClock/ContentView.swift @@ -0,0 +1,34 @@ +import SwiftUI + +struct ContentView: View { + var body: some View { + TabView { + NavigationStack { + ClockView() + } + .tabItem { + Label("Clock", systemImage: "clock") + } + + NavigationStack { + AlarmView() + } + .tabItem { + Label("Alarms", systemImage: "alarm") + } + + NavigationStack { + NoiseView() + } + .tabItem { + Label("Noise", systemImage: "waveform") + } + } + .accentColor(.blue) + .preferredColorScheme(.dark) + } +} + +#Preview { + ContentView() +}