Menu Action Button

Acts like a button and opens the menu on a secondary gesture

Menu Action Button - iOS Light Mode Preview

Platform Compatibility

iOS 15.0+ iPadOS 15.0+ macOS 12+ tvOS 17.0+ visionOS 1.0+

Tags

SwiftUI Code

Docs
Menu {
  Button("Button 1", action: action)
  Button("Button 2", systemImage: "button.vertical.left.press", action: action)
  Button(action: action) {
    Text("Button 3")
    Text("Description 3")
  }
} label: {
  Text("Button 0")
} primaryAction: {
  print("Button 0 tapped")
}

Found an issue or have a suggestion?

Created: May 30, 2025Updated: June 3, 2025