mobile-ios/CovidSafe/Feedback/Sources/UINavigationBar+Style.swift

17 lines
570 B
Swift
Raw Normal View History

2020-05-08 07:49:14 +00:00
// 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
]
}
}