Skip to content

Instantly share code, notes, and snippets.

@mishimay
Last active May 7, 2022 02:44
Show Gist options
  • Save mishimay/430b5cc59f622478da46fa7742bd435b to your computer and use it in GitHub Desktop.
Save mishimay/430b5cc59f622478da46fa7742bd435b to your computer and use it in GitHub Desktop.
How to use @ViewBuilder in SwiftUI View
import SwiftUI
struct ContainerView<Content: View>: View {
@ViewBuilder let content: Content
var body: some View {
content
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment