Correct issue where toolbar tint color could get lost in darkmode and transitioning to the background
This commit is contained in:
parent
17af3f28bf
commit
7448523c66
|
@ -34,10 +34,10 @@ class ThemedNavigationController: UINavigationController {
|
||||||
|
|
||||||
if traitCollection.userInterfaceStyle == .dark {
|
if traitCollection.userInterfaceStyle == .dark {
|
||||||
navigationBar.standardAppearance = UINavigationBarAppearance()
|
navigationBar.standardAppearance = UINavigationBarAppearance()
|
||||||
navigationBar.tintColor = view.tintColor
|
navigationBar.tintColor = AppAssets.primaryAccentColor
|
||||||
toolbar.standardAppearance = UIToolbarAppearance()
|
toolbar.standardAppearance = UIToolbarAppearance()
|
||||||
toolbar.compactAppearance = UIToolbarAppearance()
|
toolbar.compactAppearance = UIToolbarAppearance()
|
||||||
toolbar.tintColor = view.tintColor
|
toolbar.tintColor = AppAssets.primaryAccentColor
|
||||||
} else {
|
} else {
|
||||||
let navigationAppearance = UINavigationBarAppearance()
|
let navigationAppearance = UINavigationBarAppearance()
|
||||||
navigationAppearance.backgroundColor = AppAssets.barBackgroundColor
|
navigationAppearance.backgroundColor = AppAssets.barBackgroundColor
|
||||||
|
|
Loading…
Reference in New Issue