forked from zelo72/mastodon-ios
22 lines
439 B
Swift
22 lines
439 B
Swift
//
|
|
// ThemePreference.swift
|
|
// Mastodon
|
|
//
|
|
// Created by MainasuK Cirno on 2021-7-5.
|
|
//
|
|
|
|
import UIKit
|
|
import MastodonExtension
|
|
|
|
extension UserDefaults {
|
|
|
|
@objc dynamic var currentThemeNameRawValue: String {
|
|
get {
|
|
register(defaults: [#function: ThemeName.mastodon.rawValue])
|
|
return string(forKey: #function) ?? ThemeName.mastodon.rawValue
|
|
}
|
|
set { self[#function] = newValue }
|
|
}
|
|
|
|
}
|