mirror of
https://github.com/AU-COVIDSafe/mobile-ios.git
synced 2025-01-19 01:06:35 +00:00
16 lines
570 B
Swift
16 lines
570 B
Swift
// Copyright © 2020 Australian Government All rights reserved.
|
|
|
|
import UIKit
|
|
|
|
extension UINavigationBar {
|
|
func style(navigationBarStyle: NavigationBarStyle) {
|
|
isTranslucent = false
|
|
barTintColor = navigationBarStyle.backgroundColor
|
|
tintColor = navigationBarStyle.tintColor
|
|
backgroundColor = navigationBarStyle.backgroundColor
|
|
titleTextAttributes = [
|
|
NSAttributedString.Key.foregroundColor: navigationBarStyle.titleTextColor,
|
|
NSAttributedString.Key.font: navigationBarStyle.titleFont
|
|
]
|
|
}
|
|
}
|