another.im-ios/Monal/another.im/Helpers/View+If.swift
2024-11-19 17:07:51 +01:00

12 lines
270 B
Swift

import SwiftUI
public extension View {
@ViewBuilder func `if`<Content: View>(_ condition: @autoclosure () -> Bool, transform: (Self) -> Content) -> some View {
if condition() {
transform(self)
} else {
self
}
}
}