Skip to content

Commit

Permalink
ReadMe Updates
Browse files Browse the repository at this point in the history
  • Loading branch information
KC-2001MS committed Feb 2, 2024
1 parent 5eb93d5 commit 1ae875d
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,14 @@ struct WelcomeOnboarding: Onboarding {
imageName: "circle.badge.checkmark",
message: "When using a highly customizable implementation method, multi-color and SF symbol hierarchies are supported and can be freely customized. However, this feature is not supported in visionOS."
)

#if os(tvOS)
Feature(
"Many other benefits" ,
imageName: "ellipsis",
message: "Now, tvOS is also supported, making it easy to create onboarding. Now you can create onboarding for all platforms except watchOS."
)
#endif
}
}
```
Expand Down Expand Up @@ -145,6 +153,13 @@ struct WelcomeOnboardingSheetView: View {
OnboardingSubtitle("Customize SF Symbols")
OnboardingContent("When using a highly customizable implementation method, multi-color and SF symbol hierarchies are supported and can be freely customized.")
}

#if os(tvOS)
OnboardingItem(systemName: "ellipsis",shape: .white) {
OnboardingSubtitle("Many other benefits")
OnboardingContent("Now, tvOS is also supported, making it easy to create onboarding. Now you can create onboarding for all platforms except watchOS.")
}
#endif
} link: {
Link("Check our Privacy Policy…", destination: URL(string: "https://kc-2001ms.github.io/en/privacy.html")!)
} button: {
Expand Down

0 comments on commit 1ae875d

Please sign in to comment.