Skip to content

Instantly share code, notes, and snippets.

@sgl0v
Created October 6, 2019 15:32
Show Gist options
  • Save sgl0v/bcc38b3a23d2745d9548afdbee1f7169 to your computer and use it in GitHub Desktop.
Save sgl0v/bcc38b3a23d2745d9548afdbee1f7169 to your computer and use it in GitHub Desktop.
Backward compatible Dark Mode on iOS - ThemeProvider+UITraitEnvironment.swift
extension Themeable where Self: UITraitEnvironment {
var themeProvider: ThemeProvider {
if #available(iOS 13.0, *) {
return DefaultThemeProvider.shared
} else {
return LegacyThemeProvider.shared
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment