Add userInterfaceStyle on Theme

This commit is contained in:
ismailgulek
2020-09-22 14:17:20 +03:00
parent 7ddb5e6f1f
commit c1d9578d60
3 changed files with 13 additions and 0 deletions
@@ -71,6 +71,11 @@ class DarkTheme: NSObject, Theme {
var statusBarStyle: UIStatusBarStyle = .lightContent
var scrollBarStyle: UIScrollView.IndicatorStyle = .white
var keyboardAppearance: UIKeyboardAppearance = .dark
@available(iOS 12.0, *)
var userInterfaceStyle: UIUserInterfaceStyle {
return .dark
}
var placeholderTextColor: UIColor = UIColor(rgb: 0xA1B2D1) // Use secondary text color
var selectedBackgroundColor: UIColor = UIColor(rgb: 0x040506)