yattee/Backports/Badge+Backport.swift

17 lines
409 B
Swift
Raw Normal View History

2021-11-28 14:37:55 +00:00
import SwiftUI
extension Backport where Content: View {
@ViewBuilder func badge(_ count: Text) -> some View {
if #available(iOS 15.0, macOS 12.0, tvOS 15.0, *) {
content.badge(count)
} else {
2021-12-02 19:22:55 +00:00
HStack {
content
Spacer()
Text("\(count)")
.foregroundColor(.secondary)
}
2021-11-28 14:37:55 +00:00
}
}
}