Skip to content

Commit

Permalink
Add skiing icons in onboarding flow (#5)
Browse files Browse the repository at this point in the history
# Add skiing icons in onboarding flow


## 📝 Code of Conduct & Contributing Guidelines 

By submitting creating this pull request, you agree to follow our [Code
of
Conduct](https://github.com/CS342/.github/blob/main/CODE_OF_CONDUCT.md)
and [Contributing
Guidelines](https://github.com/CS342/.github/blob/main/CONTRIBUTING.md):
- [x] I agree to follow the [Code of
Conduct](https://github.com/CS342/.github/blob/main/CODE_OF_CONDUCT.md)
and [Contributing
Guidelines](https://github.com/CS342/.github/blob/main/CONTRIBUTING.md).

Co-authored-by: Andreas Bauer <[email protected]>
  • Loading branch information
philippzagar and Supereg authored Jan 12, 2024
1 parent a3065ad commit 913f6b1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions ExampleApplication/Onboarding/Welcome.swift
Original file line number Diff line number Diff line change
Expand Up @@ -21,23 +21,23 @@ struct Welcome: View {
areas: [
OnboardingInformationView.Content(
icon: {
Image(systemName: "apps.iphone")
Image(systemName: "figure.skiing.downhill")
.accessibilityHidden(true)
},
title: "WELCOME_AREA1_TITLE",
description: "WELCOME_AREA1_DESCRIPTION"
),
OnboardingInformationView.Content(
icon: {
Image(systemName: "shippingbox.fill")
Image(systemName: "figure.disc.sports")
.accessibilityHidden(true)
},
title: "WELCOME_AREA2_TITLE",
description: "WELCOME_AREA2_DESCRIPTION"
),
OnboardingInformationView.Content(
icon: {
Image(systemName: "list.bullet.clipboard.fill")
Image(systemName: "figure.skiing.crosscountry")
.accessibilityHidden(true)
},
title: "WELCOME_AREA3_TITLE",
Expand Down

0 comments on commit 913f6b1

Please sign in to comment.