VPVenkatachalam perumalincodewithvenkat.hashnode.dev·Jun 3, 2021 · 1 min readSwift 5.4 supports writing @ViewBuilder attribute to stored propertiesPrior to Swift 5.4, if I wanted to implement a custom SwiftUI VStack, I have to write like this struct CustomStackView<Content: View >: View { let content: () -> Content var body: some View { VStack { content() ...00