Skip to content

Commit

Permalink
Tidy up WelcomeView layout a bit.
Browse files Browse the repository at this point in the history
  • Loading branch information
pixlwave committed Jun 16, 2024
1 parent 368d566 commit 97f1350
Showing 1 changed file with 7 additions and 10 deletions.
17 changes: 7 additions & 10 deletions Source/Help/WelcomeView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ struct WelcomeView: View {
Spacer()

Text("Getting Started")
.font(.title)
.font(.largeTitle.bold())

Spacer()

Expand All @@ -30,17 +30,14 @@ struct WelcomeView: View {
}
.padding(20)

Spacer()
Spacer()

Button(action: dismiss) {
Text("Continue")
.font(.headline)
.foregroundColor(.white)
.padding(.vertical, 12)
.padding(.horizontal, 40)
.background(Color("Tint Color"))
.cornerRadius(7)
}
Button("Continue", action: dismiss)
.buttonStyle(.borderedProminent)
.controlSize(.large)
.font(.headline)
.tint(.tint)

Spacer()
}
Expand Down

0 comments on commit 97f1350

Please sign in to comment.