ViewBuilder transforms
SwiftUI โฉ Views โฉ ViewBuilder โฉ
// โญ๏ธ if ... else
struct ContentView: View {
var body: some View {
// _ConditionalContent<Text, Text>
if true { A } else { B }
}
}
Last updated
Was this helpful?