change the order of onboarding

This commit is contained in:
Trey t
2022-04-07 18:30:50 -05:00
parent 8fc887e390
commit 6dc7732634
6 changed files with 12 additions and 12 deletions

View File

@@ -21,7 +21,7 @@ struct OnboardingTime: View {
GeometryReader { geometry in
VStack(alignment: .leading) {
Spacer()
Image("great", bundle: .main)
Image("horrible", bundle: .main)
.foregroundColor(Color(UIColor.darkText))
.opacity(0.04)
.scaleEffect(1.2, anchor: .trailing)
@@ -55,7 +55,7 @@ struct OnboardingTime: View {
.padding()
}
}
.background(Color(hex: "31d158"))
.background(Color(hex: "ff453a"))
}
}