RaiTech Labsraitech.hashnode.dev·Aug 21, 2023Exploring LazyVStack vs. VStack in SwiftUI: Memory Efficiency and PerformanceHey there! Welcome back to another installment of our SwiftUI crash course series. In this video, we're delving into the intriguing concept of LazyVStack, a variation of the vertical stack that has significant implications for memory usage and render...102 readsSwift
Xavierxavier7t.com·Feb 23, 2023Lazy Stacks in SwiftUIIn iOS 14 and macOS 11, Apple introduced LazyVStack and LazyHStack in SwiftUI. Both types of the stack is a SwiftUI but how do they differ from the traditional VStack and HStack? We’re going to explore this in Xcode with a simple view struct. The sou...224 readsSwiftUI