1
0
mirror of https://github.com/yattee/yattee.git synced 2024-12-13 13:50:32 +05:30
yattee/Backports/Badge+Backport.swift

17 lines
409 B
Swift
Raw Normal View History

2021-11-28 20:07:55 +05:30
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-03 00:52:55 +05:30
HStack {
content
Spacer()
Text("\(count)")
.foregroundColor(.secondary)
}
2021-11-28 20:07:55 +05:30
}
}
}