small example:
extension View {
@ViewBuilder public func foregroundPolyfill(_ color: Color) -> some View {
if #available(macOS 14.0, iOS 17.0, *) { self.foregroundStyle(color) }
else { self.foregroundColor(color) }
}
}