skip to content
Law

SwiftUI Journey Part 2

/ 1 min read

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)
}
}