Xcode – Collapse sidebar items on macOS SwiftUI
When attempting to replicate the behaviour of Finder and SF Symbols in a macOS application using SwiftUI, I encountered difficulties with DisclosureGroup. Here is my current code: import SwiftUI struct SidebarView: View { @State private var companiesExpanded = false var…