Cleanup and symbol unification
This commit is contained in:
parent
ff7a4c5620
commit
a0562e9e9d
|
@ -11,6 +11,7 @@ import Foundation
|
|||
import SwiftUI
|
||||
|
||||
struct HomeView: View {
|
||||
|
||||
@EnvironmentObject var homeRouter: HomeCoordinator.Router
|
||||
@StateObject var viewModel = HomeViewModel()
|
||||
|
||||
|
@ -65,7 +66,7 @@ struct HomeView: View {
|
|||
Button {
|
||||
homeRouter.route(to: \.settings)
|
||||
} label: {
|
||||
Image(systemName: "gear")
|
||||
Image(systemName: "gearshape.fill")
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -66,7 +66,7 @@ fileprivate struct ItemView: View {
|
|||
Label("Show Series", systemImage: "text.below.photo")
|
||||
}
|
||||
} label: {
|
||||
Image(systemName: "ellipsis.circle")
|
||||
Image(systemName: "ellipsis.circle.fill")
|
||||
}
|
||||
case .episode:
|
||||
Menu {
|
||||
|
@ -81,7 +81,7 @@ fileprivate struct ItemView: View {
|
|||
Label("Show Season", systemImage: "square.fill.text.grid.1x2")
|
||||
}
|
||||
} label: {
|
||||
Image(systemName: "ellipsis.circle")
|
||||
Image(systemName: "ellipsis.circle.fill")
|
||||
}
|
||||
default:
|
||||
EmptyView()
|
||||
|
|
|
@ -119,7 +119,7 @@ struct ServerListView: View {
|
|||
Button {
|
||||
serverListRouter.route(to: \.basicAppSettings)
|
||||
} label: {
|
||||
Image(systemName: "gear")
|
||||
Image(systemName: "gearshape.fill")
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -50,7 +50,7 @@ final class MainTabCoordinator: TabCoordinatable {
|
|||
|
||||
@ViewBuilder func makeSettingsTab(isActive: Bool) -> some View {
|
||||
HStack {
|
||||
Image(systemName: "gear")
|
||||
Image(systemName: "gearshape.fill")
|
||||
Text("Settings")
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue