forked from zelo72/mastodon-ios
25 lines
541 B
Swift
25 lines
541 B
Swift
//
|
|
// ThemeService.swift
|
|
// Mastodon
|
|
//
|
|
// Created by MainasuK Cirno on 2021-7-5.
|
|
//
|
|
|
|
import UIKit
|
|
import Combine
|
|
|
|
// ref: https://zamzam.io/protocol-oriented-themes-for-ios-apps/
|
|
final class ThemeService {
|
|
|
|
// MARK: - Singleton
|
|
public static let shared = ThemeService()
|
|
|
|
let currentTheme: CurrentValueSubject<Theme, Never>
|
|
|
|
private init() {
|
|
let theme = ThemeName(rawValue: UserDefaults.shared.currentThemeNameRawValue)?.theme ?? ThemeName.mastodon.theme
|
|
currentTheme = CurrentValueSubject(theme)
|
|
}
|
|
|
|
}
|