Skip to content

Instantly share code, notes, and snippets.

View StanDimitroff's full-sized avatar
🔨

Stanislav Dimitrov StanDimitroff

🔨
View GitHub Profile
import SwiftUI
struct CustomVStack<Content: View>: View {
let content: () -> Content
init(@ViewBuilder content: @escaping () -> Content) {
self.content = content
}
var body: some View {
VStack(spacing: 0) {