How to size subviews in HStack by percentage without GeometryReader (SwiftUI)? – Ios swift
I've got a simple HStack with subviews inside. How can I tell the first subview to be 60% the size of the HStack without using a GeometryReader? struct ContentView: View { var body: some View { HStack { Color.red.opacity(0.3) Color.brown.opacity(0.4)…