---
title: increased
framework: swiftui
role: symbol
role_heading: Type Property
path: swiftui/badgeprominence/increased
---

# increased

The highest level of prominence for a badge.

## Declaration

```swift
static let increased: BadgeProminence
```

## Discussion

Discussion This level of prominence should be used for badges that display a value that requires user action, such as number of updates or account errors. In lists on iOS and macOS, this results in badge labels being displayed on a red platter. ForEach(accounts) { account in     Text(account.userName)         .badge(account.setupErrors)         .badgeProminence(.increased) }

## See Also

### Getting background prominence

- [standard](swiftui/badgeprominence/standard.md)
- [decreased](swiftui/badgeprominence/decreased.md)
