<!--
{
  "availability" : [
    "iOS: 13.0.0 - 27.0.0",
    "iPadOS: 13.0.0 - 27.0.0",
    "macCatalyst: 13.0.0 - 27.0.0",
    "visionOS: 1.0.0 - 27.0.0"
  ],
  "documentType" : "symbol",
  "framework" : "SwiftUI",
  "identifier" : "/documentation/SwiftUI/View/navigationBarTitle(_:displayMode:)-8buvp",
  "metadataVersion" : "0.1.0",
  "role" : "Instance Method",
  "symbol" : {
    "kind" : "Instance Method",
    "modules" : [
      "SwiftUI"
    ],
    "preciseIdentifier" : "s:7SwiftUI4ViewPAAE18navigationBarTitle_11displayModeQrAA4TextV_AA010NavigationE4ItemV0f7DisplayH0OtF"
  },
  "title" : "navigationBarTitle(_:displayMode:)"
}
-->

# navigationBarTitle(_:displayMode:)

Sets the title and display mode in the navigation bar for this view.

```
nonisolated func navigationBarTitle(_ title: Text, displayMode: NavigationBarItem.TitleDisplayMode) -> some View
```

## Parameters

`title`

A title for this view to display in the navigation bar.

`displayMode`

The style to use for displaying the navigation bar title.

## Discussion

Use `navigationBarTitle(_:displayMode:)` to set the title of the
navigation bar for this view and specify a display mode for the title
from one of the `NavigationBarItem/TitleDisplayMode` styles. This
modifier only takes effect when this view is inside of and visible
within a `NavigationView`.

In the example below, text for the navigation bar title is provided
using a `Text` view. The navigation bar title’s
`NavigationBarItem/TitleDisplayMode` is set to `.inline` which places
the navigation bar title in the bounds of the navigation bar.

```
struct FlavorView: View {
   let items = ["Chocolate", "Vanilla", "Strawberry", "Mint Chip",
                "Pistachio"]
   var body: some View {
        NavigationView {
            List(items, id: \.self) {
                Text($0)
            }
            .navigationBarTitle(Text("Today's Flavors", displayMode: .inline))
        }
    }
}
```

---

Copyright &copy; 2026 Apple Inc. All rights reserved. | [Terms of Use](https://www.apple.com/legal/internet-services/terms/site.html) | [Privacy Policy](https://www.apple.com/privacy/privacy-policy)