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

# standard

The standard level of prominence for a badge.

## Declaration

```swift
static let standard: BadgeProminence
```

## Discussion

Discussion This level of prominence should be used for badges that display a value that suggests user action, such as a count of unread messages or new invitations. In lists on macOS, this results in a badge label on a grayscale platter; and in lists on iOS, this prominence of badge has no platter. List(mailboxes) { mailbox in     Text(mailbox.name)         .badge(mailbox.numberOfUnreadMessages) } .badgeProminence(.standard)

## See Also

### Getting background prominence

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