---
title: largeTitle
framework: swiftui
role: symbol
role_heading: Type Property
path: swiftui/toolbaritemplacement/largetitle
---

# largeTitle

A placement for items in the navigation bar’s title area.

## Declaration

```swift
static let largeTitle: ToolbarItemPlacement
```

## Discussion

Discussion The view appears when the navigation bar renders its title out-of-line, and takes precedence over the value provided to the View.navigationTitle(_:) modifier. struct ContentView: View {     var body: some View {         NavigationStack {             DetailView()                 .navigationTitle("Title")                 .navigationSubtitle("Subtitle")                 .toolbar {                     ToolbarItem(placement: .largeTitle) {                         CustomLargeNavigationTitle()                     }                 }         }     } }
