Properties3
Is BaseNo
Icon
Order
10Requirements
- macOS 26 (Tahoe) / iPadOS 26 or later
- Xcode 26 or later
- Swift 6.2
Swift Package Manager
Add KelyphosKit to your Package.swift:
dependencies: [
.package(url: "https://github.com/jwintz/kelyphos", from: "0.1.0")
],
targets: [
.target(
name: "MyApp",
dependencies: [
.product(name: "KelyphosKit", package: "kelyphos")
]
)
]
Xcode Project
If you use XcodeGen, add to your project.yml:
packages:
Kelyphos:
url: https://github.com/jwintz/kelyphos
from: 0.1.0
targets:
MyApp:
dependencies:
- package: Kelyphos
product: KelyphosKit
Building the Demo App
Clone and build the included HIG showcase:
git clone https://github.com/jwintz/kelyphos
cd kelyphos
swift run KelyphosDemo
Next Steps
- Shell State — learn about
KelyphosShellState - Defining Panels — create your first panel tabs
