cleaned up viewmodifier

This commit is contained in:
neon443
2025-06-09 13:43:21 +01:00
parent 9410774264
commit 73e31b26f2

View File

@@ -9,19 +9,15 @@ import Foundation
import SwiftUI import SwiftUI
struct foregroundColorStyle: ViewModifier { struct foregroundColorStyle: ViewModifier {
var color: Color? var color: Color
init(_ color: Color?) { init(_ color: Color) {
self.color = color self.color = color
} }
func body(content: Content) -> some View { func body(content: Content) -> some View {
if #available(iOS 17.0, *) { if #available(iOS 15.0, *) {
if let color = color { content.foregroundStyle(color)
content.foregroundStyle(color)
} else {
content
}
} else { } else {
content.foregroundColor(color) content.foregroundColor(color)
} }