mobile-ios/CovidSafe/Feedback/Sources/UINavigationBar+Style.swift
2020-05-08 17:49:14 +10:00

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
]
}
}