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

# subtitle

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

## Declaration

```swift
static let subtitle: ToolbarItemPlacement
```

## Discussion

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