Untitled
Anonymous
plain_text
02/07/2023 7:45 PM
528 B
34
Indexable
@objc private func changeTheme() {
if themeSwitcher.isOn {
UIApplication.shared.windows.first?.overrideUserInterfaceStyle = .dark
UserDefaults.standard.set("dark", forKey: "theme")
} else {
UIApplication.shared.windows.first?.overrideUserInterfaceStyle = .light
UserDefaults.standard.set("light", forKey: "theme")
}
}Editor is loading...