Cleanup and symbol unification

This commit is contained in:
Ethan Pippin 2021-10-15 15:25:56 -06:00
parent ff7a4c5620
commit a0562e9e9d
4 changed files with 6 additions and 5 deletions

View File

@ -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")
}
}
}

View File

@ -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()

View File

@ -119,7 +119,7 @@ struct ServerListView: View {
Button {
serverListRouter.route(to: \.basicAppSettings)
} label: {
Image(systemName: "gear")
Image(systemName: "gearshape.fill")
}
}

View File

@ -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")
}
}