Skip to content

Instantly share code, notes, and snippets.

@prongbang
Forked from chriseidhof/LazyView.swift
Created November 27, 2020 18:41
Show Gist options
  • Save prongbang/620dfb7ff68925047e85b49bab3364d3 to your computer and use it in GitHub Desktop.
Save prongbang/620dfb7ff68925047e85b49bab3364d3 to your computer and use it in GitHub Desktop.
LazyView
struct LazyView<Content: View>: View {
let build: () -> Content
init(_ build: @autoclosure @escaping () -> Content) {
self.build = build
}
var body: Content {
build()
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment