Changed searh bar

This commit is contained in:
Vladimir Dubovik
2024-12-02 14:09:05 +03:00
parent ac28d21f9e
commit 2b506ce538
6 changed files with 88 additions and 39 deletions

View File

@ -8,7 +8,7 @@
import SwiftUI
struct ContentView: View {
@State private var selectedTab: TabModel = .schedule
@State private var selectedTab: TabBarModel = .schedule
var body: some View {
ZStack {
switch selectedTab {
@ -21,7 +21,7 @@ struct ContentView: View {
}
TabBarView(selectedTab: $selectedTab)
}
.background(.secondary.opacity(0.15))
.background(Color("background"))
}
}