https://github.com/rafaelesantos/refds-welcome
Refds Welcome is a Swift package designed to create a quick and interactive welcome screen for your SwiftUI applications. This package aims to provide an intuitive way to showcase the features of your application to new users.
https://github.com/rafaelesantos/refds-welcome
onboarding refds refds-shared refds-ui swift-package-manager swiftui welcome
Last synced: 3 months ago
JSON representation
Refds Welcome is a Swift package designed to create a quick and interactive welcome screen for your SwiftUI applications. This package aims to provide an intuitive way to showcase the features of your application to new users.
- Host: GitHub
- URL: https://github.com/rafaelesantos/refds-welcome
- Owner: rafaelesantos
- License: mit
- Created: 2024-03-16T05:36:14.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-10-07T18:35:30.000Z (8 months ago)
- Last Synced: 2025-01-07T15:15:23.363Z (5 months ago)
- Topics: onboarding, refds, refds-shared, refds-ui, swift-package-manager, swiftui, welcome
- Language: Swift
- Homepage:
- Size: 39.1 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Refds Welcome
Refds Welcome is a Swift package designed to create a quick and interactive welcome screen for your SwiftUI applications. This package aims to provide an intuitive way to showcase the features of your application to new users.
## Features
- [X] Easy Integration: Simply import the WelcomePageSwiftUI package into your SwiftUI project and start using the welcome page component immediately.
- [X] Customizable: Customize the welcome page with your own branding, colors, and content to align with your application's design.
- [X] Interactive: Engage users with interactive elements such as buttons, gestures, and animations to showcase key features of your application.
- [X] Swift Package Manager Support: WelcomePageSwiftUI fully supports Swift Package Manager for easy integration into your project.## Installation
Add this project to your `Package.swift` file.
```swift
import PackageDescriptionlet package = Package(
dependencies: [
.package(url: "https://github.com/rafaelesantos/refds-welcome.git", branch: "main")
],
targets: [
.target(
name: "YourProject",
dependencies: [
.product(
name: "RefdsWelcome",
package: "refds-welcome"),
]),
]
)
```