Animate ViewBuilder content size change in SwiftUI – Ios swift
I am wondering how I can animate the content size of a ViewBuilder view. I have this: struct CardView<Content>: View where Content: View { private let content: Content init(@ViewBuilder content: () -> Content) { self.content = content() } var body:…