35 lines
731 B
Swift
35 lines
731 B
Swift
//
|
|
// ContentView.swift
|
|
// notetaker
|
|
//
|
|
// Created by Owen Gretzinger on 2025-07-10.
|
|
//
|
|
|
|
import SwiftUI
|
|
|
|
struct ContentView: View {
|
|
@State private var showingSettings = false
|
|
|
|
var body: some View {
|
|
VStack {
|
|
MeetingListView()
|
|
.toolbar {
|
|
ToolbarItem(placement: .automatic) {
|
|
Button {
|
|
showingSettings = true
|
|
} label: {
|
|
Label("Settings", systemImage: "gear")
|
|
}
|
|
}
|
|
}
|
|
}
|
|
.sheet(isPresented: $showingSettings) {
|
|
SettingsView()
|
|
}
|
|
}
|
|
}
|
|
|
|
#Preview {
|
|
ContentView()
|
|
}
|