Skip to content

Latest commit

 

History

History
40 lines (27 loc) · 802 Bytes

README.md

File metadata and controls

40 lines (27 loc) · 802 Bytes

PresentationKit

Create stunning presentations with the power of SwiftUI.

Demo

Installation

XCode Package Manager

Add this repo to your SwiftUI project via the package manager.

https://github.com/AdinAck/PresentationKit

Usage

MyApp.swift

import SwiftUI
import PresentationKit

@main
struct MyApp: App {
    @StateObject var presentation = Presentation(bgColor: .white, slides: [
        Title(),
        // put more slides here
    ])

    var body: some Scene {
        PresentationScene(presentation: presentation)
    }
}

Examples

Refer to this example project to see PresentationKit in action.