mtj0928/slidekit
SlideKit helps you make presentation slides on SwiftUI.<br/>
Requirements
- Swift 6.0+
- iOS 17+, macOS 14+, visionOS 1+, tvOS 17+
Documents
First, see the Tutorial for SlideKit. You can learn how to use SlideKit and make presentation slides through making the sample presentation slides.
If you want to know more details, refer the DocC Style Document
Features
- [x] Support all SwiftUI Views🔥
- [x] Provide
HeaderSlide, it is a template slide which has a title. - [x] Support
HeaderSlideStyle, so you can customize the design of theHeaderSlide. - [x] Provide some utility view components
- Code: Syntax Highlighted view (Only Swift is supported now.) - Item: Itemization view. Item supports nested structures.
- [x] Show the current slide index at bottom right on slide.
- [x] Support two windows, presentation window and presenter window.
- [x] Show scripts on only presenter window (only macOS)
- [x] Provide
@Phase, so you can divide a one slide step by step. - [x] Export PDF file
Simple Example
You can create a presentation by SwiftUI like this.
@Slide
struct IntroductionSlide: View {
var body: some View {
HeaderSlide("SlideKit") {
Item("SlideKit helps you make presentation slides by SwiftUI")
Item("The followings are provided") {
Item("Views")
Item("Structures")
Item("Utilities")
}
}
}
}And then, this is the result of the code. <img width="1096" alt="IntroductionSlide" src="https://user-images.githubusercontent.com/12427733/190955403-ed64a5fd-eed0-4a4c-8684-75f39623a563.png">
Presentations made with SlideKit
Feel free to add your presentations made by SlideKit to the following list!!
- After iOSDC: A presentation, which shares the hard points to make presentations slides by SwiftUI. (Japanese)
- iOSDC23 A presentation, which shows a dependency injection strategy on SwiftUI. (Japanese)
Package Metadata
Repository: mtj0928/slidekit
Default branch: main
README: README.md