Skip to content

Instantly share code, notes, and snippets.

@maximkrouk
Last active January 14, 2020 09:34
Show Gist options
  • Save maximkrouk/4f7a1a788b130beea09319189730516c to your computer and use it in GitHub Desktop.
Save maximkrouk/4f7a1a788b130beea09319189730516c to your computer and use it in GitHub Desktop.
import UIKit
func valueForTheme<Value>(light: Value, dark: Value) -> Value {
return UITraitCollection.current.userInterfaceStyle == .dark ? dark : light
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment