Add services settings

This commit is contained in:
Arkadiusz Fal
2021-10-23 14:12:53 +02:00
parent 512613d350
commit cf0975d8bf
3 changed files with 30 additions and 9 deletions

View File

@@ -5,7 +5,7 @@ import SwiftUI
struct SettingsView: View {
#if os(macOS)
private enum Tabs: Hashable {
case playback, instances
case playback, services, instances
}
#endif
@@ -24,6 +24,14 @@ struct SettingsView: View {
}
.tag(Tabs.instances)
Form {
ServicesSettings()
}
.tabItem {
Label("Services", systemImage: "puzzlepiece.extension")
}
.tag(Tabs.services)
Form {
PlaybackSettings()
}
@@ -41,6 +49,7 @@ struct SettingsView: View {
AccountSelectionView()
#endif
InstancesSettings()
ServicesSettings()
PlaybackSettings()
}
.navigationTitle("Settings")