<!--
{
  "availability" : [
    "iOS: 17.0.0 -",
    "iPadOS: 17.0.0 -",
    "macCatalyst: 17.0.0 -",
    "macOS: 14.0.0 -",
    "visionOS: 1.0.0 -"
  ],
  "documentType" : "symbol",
  "framework" : "SwiftUI",
  "identifier" : "/documentation/SwiftUI/BadgeProminence/decreased",
  "metadataVersion" : "0.1.0",
  "role" : "Type Property",
  "symbol" : {
    "kind" : "Type Property",
    "modules" : [
      "SwiftUI"
    ],
    "preciseIdentifier" : "s:7SwiftUI15BadgeProminenceV9decreasedACvpZ"
  },
  "title" : "decreased"
}
-->

# decreased

The lowest level of prominence for a badge.

```
static let decreased: BadgeProminence
```

## Discussion

This level or prominence should be used for badges that display a value
of passive information that requires no user action, such as total
number of messages or content.

In lists on iOS and macOS, this results in badge labels being
displayed without any extra decoration. On iOS, this looks the same as
`.standard`.

```
List(folders) { folder in
    Text(folder.name)
        .badge(folder.numberOfItems)
}
.badgeProminence(.decreased)
```

---

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)