basic phone input page but not workking with nav

This commit is contained in:
talksik
2021-12-17 15:03:23 -08:00
parent 3639819d04
commit 5dbf79d288
3 changed files with 31 additions and 7 deletions
@@ -6,15 +6,19 @@
//
import SwiftUI
import NavigationStack
struct WelcomeView: View {
@State var showLearnMore = false
@EnvironmentObject private var navigationStack: NavigationStack
var body: some View {
OnboardingTemplateView(imgName: "undraw_friendship_mni7", mainLeadingActText: "Your", mainHighlightedActText: "minimalist", mainTrailingActText: "social media.", subActText: "Tired of the rat race on insta, snap, tik-tok, \"meta\"?", bottomActArea: AnyView(
VStack(alignment: .center) {
Button {
print("going to the sign in page")
self.navigationStack.push(PhoneVerificationView())
} label: {
Text("Start Your Detox")
.bold()