Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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.