List Badge Prominence

Specifies the prominence of badges created by this view.

List Badge Prominence - iOS Light Mode Preview

Platform Compatibility

iOS 17.0+ iPadOS 17.0+ macOS 14.0+ visionOS 1.0+

Tags

SwiftUI Code

Docs
List {
  Section("Header") {
    Text("Increased")
      .badge("1")
      .badgeProminence(.increased)
    Text("Standard")
      .badge(2)
      .badgeProminence(.standard)
    Text("Decreased")
      .badge(3)
      .badgeProminence(.decreased)
  }
}

Found an issue or have a suggestion?

Created: August 10, 2025Updated: August 10, 2025