Lawrence Gimenez

SwiftUI Journey Part 2

Time to implement the sign in page. Welp. Ahh, forgot the frame().

struct SignInView: View {
    var body: some View {
        Text("I'm Sign In")
            .frame(width: 700, height: 300)
    }
}