Answers for "change font of navigation bar title swiftui"

1

swift navigation bar title font

// Place this in your didFinishLaunchingWithOptions method in the AppDelegate
let attrs = [
  NSAttributedString.Key.font: UIFont(name: "Futura-Bold", size: 17)!
]

UINavigationBar.appearance().titleTextAttributes = attrs
Posted by: Guest on June-16-2020

Code answers related to "change font of navigation bar title swiftui"

Code answers related to "Swift"

Browse Popular Code Answers by Language