// // WellnessPrefsView.swift // Tusker // // Created by Shadowfacts on 9/14/19. // Copyright © 2019 Shadowfacts. All rights reserved. // import SwiftUI struct WellnessPrefsView: View { @ObservedObject private var preferences = Preferences.shared var body: some View { List { showFavAndReblogCount notificationsMode grayscaleImages } .listStyle(InsetGroupedListStyle()) .navigationBarTitle(Text("Digital Wellness")) } private var showFavAndReblogCount: some View { Section(footer: Text("Control whether total favorite and reblog counts are shown for the main post in conversations.")) { Toggle(isOn: $preferences.showFavoriteAndReblogCounts) { Text("Show Favorite and Reblog Counts") } } } private var notificationsMode: some View { Section(footer: Text("Choose which kinds of notifications will be shown by default in the Notifications tab.")) { Picker(selection: $preferences.defaultNotificationsMode, label: Text("Default Notifications Mode")) { ForEach(NotificationsMode.allCases, id: \.self) { type in Text(type.displayName).tag(type) } } } } private var grayscaleImages: some View { Section(footer: Text("Show attachments, avatars, headers, and custom emoji in black and white.")) { Toggle(isOn: $preferences.grayscaleImages) { Text("Grayscale Images") } } } } struct WellnessPrefsView_Previews: PreviewProvider { static var previews: some View { WellnessPrefsView() } }