How to center the title of navigation bar?

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:

Accepted Answer

You can add this to your NavigationView body:

.navigationBarTitleDisplayMode(.inline)
.toolbar {
	ToolbarItem(placement: .principal) {
		Text("Title")
			.font(.largeTitle.bold())
			.accessibilityAddTraits(.isHeader)
	}
}
How to center the title of navigation bar?
 
 
Q