forked from shadowfacts/Tusker
55 lines
1.6 KiB
Swift
55 lines
1.6 KiB
Swift
// AppearancePrefsView.swift
|
|
// Tusker
|
|
//
|
|
// Created by Shadowfacts on 6/13/19.
|
|
// Copyright © 2019 Shadowfacts. All rights reserved.
|
|
//
|
|
|
|
import SwiftUI
|
|
|
|
struct AppearancePrefsView : View {
|
|
@ObservedObject var preferences = Preferences.shared
|
|
|
|
var theme: Binding<UIUserInterfaceStyle> = Binding(get: {
|
|
Preferences.shared.theme
|
|
}, set: {
|
|
Preferences.shared.theme = $0
|
|
NotificationCenter.default.post(name: .themePreferenceChanged, object: nil)
|
|
})
|
|
|
|
var useCircularAvatars: Binding<Bool> = Binding(get: {
|
|
Preferences.shared.avatarStyle == .circle
|
|
}) {
|
|
Preferences.shared.avatarStyle = $0 ? .circle : .roundRect
|
|
}
|
|
|
|
var body: some View {
|
|
List {
|
|
Picker(selection: theme, label: Text("Theme")) {
|
|
Text("Use System Theme").tag(UIUserInterfaceStyle.unspecified)
|
|
Text("Light").tag(UIUserInterfaceStyle.light)
|
|
Text("Dark").tag(UIUserInterfaceStyle.dark)
|
|
}
|
|
Toggle(isOn: $preferences.showRepliesInProfiles) {
|
|
Text("Show Replies in Profiles")
|
|
}
|
|
Toggle(isOn: useCircularAvatars) {
|
|
Text("Use Circular Avatars")
|
|
}
|
|
Toggle(isOn: $preferences.hideCustomEmojiInUsernames) {
|
|
Text("Hide Custom Emoji in Usernames")
|
|
}
|
|
}
|
|
.listStyle(GroupedListStyle())
|
|
.navigationBarTitle(Text("Appearance"))
|
|
}
|
|
}
|
|
|
|
#if DEBUG
|
|
struct AppearancePrefsView_Previews : PreviewProvider {
|
|
static var previews: some View {
|
|
AppearancePrefsView()
|
|
}
|
|
}
|
|
#endif
|