Update SignInView.swift
This commit is contained in:
@@ -11,6 +11,8 @@ import AuthenticationServices
|
|||||||
import GoogleSignIn
|
import GoogleSignIn
|
||||||
|
|
||||||
struct SignInView: View {
|
struct SignInView: View {
|
||||||
|
@EnvironmentObject var authSessionStore: AuthSessionStore
|
||||||
|
|
||||||
var body: some View {
|
var body: some View {
|
||||||
OnboardingTemplateView(hdrText: "Let's get started", imgName: "undraw_enter_uhqk", bottomActArea:
|
OnboardingTemplateView(hdrText: "Let's get started", imgName: "undraw_enter_uhqk", bottomActArea:
|
||||||
AnyView(
|
AnyView(
|
||||||
@@ -55,6 +57,8 @@ struct SignInView: View {
|
|||||||
|
|
||||||
}
|
}
|
||||||
.padding(.top, 20)
|
.padding(.top, 20)
|
||||||
|
.navigationBarHidden(true)
|
||||||
|
.navigationBarBackButtonHidden(true)
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
@@ -101,11 +105,13 @@ struct SignInView: View {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
struct SignInView_Previews: PreviewProvider {
|
struct SignInView_Previews: PreviewProvider {
|
||||||
static var previews: some View {
|
static var previews: some View {
|
||||||
SignInView()
|
SignInView().environmentObject(AuthSessionStore())
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user