---
title: ToolbarOverflowMenu
framework: swiftui
role: symbol
role_heading: Structure
path: swiftui/toolbaroverflowmenu
---

# ToolbarOverflowMenu

The overflow menu of a toolbar.

## Declaration

```swift
nonisolated struct ToolbarOverflowMenu<Content> where Content : View
```

## Overview

Overview An overflow menu represents actions that are always placed in the toolbar’s overflow menu, regardless of the toolbar mode, platform, or customizability. ContentView()     .toolbar {         ToolbarOverflowMenu {             Button("Action 1") { }             Button("Action 2") { }         }     } In iOS and visionOS, this content is placed into the overflow menu in the navigation bar.

## Topics

### Creating a toolbar overflow menu

- [init(content:)](swiftui/toolbaroverflowmenu/init(content:).md)

## Relationships

### Conforms To

- [CustomizableToolbarContent](swiftui/customizabletoolbarcontent.md)
- [ToolbarContent](swiftui/toolbarcontent.md)

## See Also

### Populating a toolbar

- [toolbar(content:)](swiftui/view/toolbar(content:).md)
- [ToolbarItem](swiftui/toolbaritem.md)
- [ToolbarItemGroup](swiftui/toolbaritemgroup.md)
- [ToolbarItemPlacement](swiftui/toolbaritemplacement.md)
- [toolbarOverflowMenu(content:)](swiftui/view/toolbaroverflowmenu(content:).md)
- [ToolbarContent](swiftui/toolbarcontent.md)
- [ToolbarContentBuilder](swiftui/toolbarcontentbuilder.md)
- [ToolbarSpacer](swiftui/toolbarspacer.md)
- [DefaultToolbarItem](swiftui/defaulttoolbaritem.md)
