Skip to content

Instantly share code, notes, and snippets.

View ipodishima's full-sized avatar

Marian Paul ipodishima

View GitHub Profile
@ipodishima
ipodishima / Collapsible.swift
Last active May 8, 2025 05:54 — forked from sanzaru/Collapsible.swift
SwiftUI collapsible view
import SwiftUI
struct Collapsible<Content: View>: View {
@State var label: () -> Text
@State var content: () -> Content
@State private var collapsed: Bool = true
var body: some View {
VStack {