Now, the frames are static. I need the frames to be resizable. Time to Google. So eventually, you need to set maxWidth and maxHeight inside the frame().

1
2
3
4
5
6
7
8
struct SignInView: View {
    var body: some View {
        VStack {
            Text("Welcome to hourz.")
        }
        .frame(maxWidth: 900, maxHeight: 400)
    }
}