Skip to content

Latest commit

 

History

History
33 lines (26 loc) · 1.27 KB

README.md

File metadata and controls

33 lines (26 loc) · 1.27 KB

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

  • Easy Integration: Simply import the WelcomePageSwiftUI package into your SwiftUI project and start using the welcome page component immediately.
  • Customizable: Customize the welcome page with your own branding, colors, and content to align with your application's design.
  • Interactive: Engage users with interactive elements such as buttons, gestures, and animations to showcase key features of your application.
  • 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.

import PackageDescription

let 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"),
            ]),
    ]
)