Tuesday, June 20, 2023

Wednesday, January 25, 2023

How to align a vstack to the bottom of a scrollview in SwiftUI

 GeometryReader { reader in

    ScrollView {
        VStack {
            /// Spacer() or Color.red will now behave as expected
        }
        .frame(minHeight: reader.size.height)
    }
}