yattee/Backports/Badge+Backport.swift

16 lines
354 B
Swift
Raw Normal View History

2021-11-28 14:37:55 +00:00
import SwiftUI
extension Backport where Content: View {
2022-12-12 23:39:50 +00:00
@ViewBuilder func badge(_ count: Text?) -> some View {
2022-12-13 12:17:23 +00:00
#if os(tvOS)
2022-12-12 23:39:50 +00:00
content
2022-12-13 12:17:23 +00:00
#else
if #available(iOS 15.0, macOS 12.0, tvOS 15.0, *) {
content.badge(count)
} else {
content
}
#endif
2021-11-28 14:37:55 +00:00
}
}