Skip to content

Instantly share code, notes, and snippets.

@kmdarshan
Last active April 17, 2024 21:01
Show Gist options
  • Save kmdarshan/9ed07bf974f53e812f7bece421d7fa39 to your computer and use it in GitHub Desktop.
Save kmdarshan/9ed07bf974f53e812f7bece421d7fa39 to your computer and use it in GitHub Desktop.
if let navigationBar = navigationBar as? UINavigationBar {
navigationBar.titleTextAttributes = [NSAttributedString.Key.font: UIFont.ok_bold(20)]
}
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