How to center the title of navigation bar?
I was trying to do with UINavigationBar.appearance() but I wasn't sucessfull.
This is what I'm trying to do with SwiftUI NavigationView:
How to center the title of navigation bar?
I was trying to do with UINavigationBar.appearance() but I wasn't sucessfull.
This is what I'm trying to do with SwiftUI NavigationView:
You can add this to your NavigationView body:
.navigationBarTitleDisplayMode(.inline)
.toolbar {
ToolbarItem(placement: .principal) {
Text("Title")
.font(.largeTitle.bold())
.accessibilityAddTraits(.isHeader)
}
}