import SwiftUI struct SettingsSourceView: View { @EnvironmentObject var settings: Settings var body: some View { Picker("Booru", selection: $settings.preferredBooru) { ForEach(Booru.allCases, id: \.self) { type in Text(type.rawValue.capitalized).tag(type) } } } }