Last active
April 17, 2024 21:01
-
-
Save kmdarshan/9ed07bf974f53e812f7bece421d7fa39 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if let navigationBar = navigationBar as? UINavigationBar { | |
navigationBar.titleTextAttributes = [NSAttributedString.Key.font: UIFont.ok_bold(20)] | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
let navBarAppearance = UINavigationBarAppearance() | |
navBarAppearance.backgroundColor = UIColor.red | |
navBarAppearance.shadowColor = .clear | |
navBarAppearance.titleTextAttributes = [.font: UIFont(18)] | |
navigationController?.navigationBar.standardAppearance = navBarAppearance | |
navigationController?.navigationBar.scrollEdgeAppearance = navBarAppearance |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment