Create stunning presentations with the power of SwiftUI.
XCode Package Manager
Add this repo to your SwiftUI project via the package manager.
https://github.com/AdinAck/PresentationKit
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)
}
}
Refer to this example project to see PresentationKit in action.