Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: 2 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 (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-08-15T02:21:00.000Z (5 months ago)
- Last Synced: 2024-08-15T03:30:46.975Z (5 months ago)
- Topics: presentations, swift, swiftui
- Language: Swift
- Homepage:
- Size: 18.6 KB
- Stars: 8
- 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.
![Demo](https://github.com/AdinAck/PresentationKit/assets/30732255/41e289b5-35f6-4d39-9abe-659fa00c77e4)
## 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.