https://github.com/adinack/presentationkit
A framework that provides a Swiftful, declaritive way to quickly make procedurally animated, dynamic, interactive, and generally stunning presentations with SwiftUI
https://github.com/adinack/presentationkit
presentations swift swiftui
Last synced: 3 months ago
JSON representation
A framework that provides a Swiftful, declaritive way to quickly make procedurally animated, dynamic, interactive, and generally stunning presentations with SwiftUI
- Host: GitHub
- URL: https://github.com/adinack/presentationkit
- Owner: AdinAck
- Created: 2023-07-19T16:16:57.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-08-15T02:21:00.000Z (11 months ago)
- Last Synced: 2025-04-18T04:12:52.367Z (3 months ago)
- Topics: presentations, swift, swiftui
- Language: Swift
- Homepage:
- Size: 18.6 KB
- Stars: 9
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# PresentationKit
Create stunning presentations with the power of SwiftUI.

## Installation
**XCode Package Manager**
Add this repo to your SwiftUI project via the package manager.
```
https://github.com/AdinAck/PresentationKit
```## Usage
**MyApp.swift**
```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](https://github.com/AdinAck/ExamplePresentation) to see **PresentationKit** in action.