Skip to content

Instantly share code, notes, and snippets.

@kraigspear
Created April 1, 2021 15:51
Show Gist options
  • Save kraigspear/af5063334f083193cf1b8201ea713f76 to your computer and use it in GitHub Desktop.
Save kraigspear/af5063334f083193cf1b8201ea713f76 to your computer and use it in GitHub Desktop.
//
// NavigationLazyView.swift
//
//
// Created by Kraig Spear on 11/14/20.
//
import SwiftUI
public struct NavigationLazyView<Content: View>: View {
let build: () -> Content
public init(_ build: @autoclosure @escaping () -> Content) {
self.build = build
}
public var body: Content {
build()
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment