Skip to content

Commit

Permalink
Fixed Alignment
Browse files Browse the repository at this point in the history
  • Loading branch information
g-cqd committed Feb 13, 2024
1 parent 926d5e5 commit 3268258
Showing 1 changed file with 11 additions and 5 deletions.
16 changes: 11 additions & 5 deletions Cami/View/OnboardingView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -78,22 +78,28 @@ struct OnboardingView: View {
.tint(.red)
}
} else {
VStack(spacing: 16) {
VStack(alignment: .leading, spacing: 16) {
VStack(alignment: .leading, spacing: 3) {
Group {
HStack {
Text("Set Up Cami")
.font(.title3)
.fontWeight(.medium)
.foregroundStyle(.tint)
Spacer()
}
HStack {
Text("""
Cami needs access to your calendars to work properly.
It can also use your contacts information to display birthdays in widgets.
""")
Cami needs access to your calendars to work properly.
It can also use your contacts information to display birthdays in widgets.
""")
.font(.body)
.fontWeight(.regular)
.foregroundStyle(.tint.opacity(0.8))

Spacer()
}
}
.frame(maxWidth: .infinity)
.multilineTextAlignment(.leading)

Button {
Expand Down

0 comments on commit 3268258

Please sign in to comment.