add customize onboarding views

make tab bar text color selected text color
This commit is contained in:
Trey t
2022-04-05 23:46:01 -05:00
parent 6fa4e2db26
commit 9bf6190bab
12 changed files with 272 additions and 71 deletions

View File

@@ -23,7 +23,7 @@ struct OnboardingWrapup: View {
GeometryReader { geometry in
VStack {
Spacer()
Image("good", bundle: .main)
Image("horrible", bundle: .main)
.foregroundColor(Color(UIColor.darkText))
.opacity(0.04)
.scaleEffect(1.2, anchor: .trailing)
@@ -78,7 +78,7 @@ struct OnboardingWrapup: View {
.frame(maxWidth: geometry.size.width)
}
}
.background(.yellow)
.background(Color(hex: "ff453a"))
}
}