feat: add search functionality

This commit is contained in:
Owen Gretzinger
2025-07-10 21:46:24 -04:00
parent 99eba5a138
commit 59a326e6c3
3 changed files with 51 additions and 22 deletions
+1 -15
View File
@@ -11,21 +11,7 @@ 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()
}
MeetingListView()
}
}