Ios swift – How to fill minHeight or minWidth in SwitUI
Let's say I have the following layout: VStack { Text(title) .frame(maxWidth: .infinity, alignment: .leading) Spacer() Divider() .frame(height: 1) } .frame(minHeight: 80, alignment: .bottom) I want the text field to expand freely, divider to be aligned to the bottom, and the…