- August 12, 2025
- Mins Read
A markdown editor component for your SwiftUI apps.
📦 Swift Package Manager
Either use Xcode to add the package dependency or add the following dependency to your Package.swift:
.package(url: “https://github.com/qeude/SwiftDown.git”, from: “0.4.1),
import SwiftDown
import SwiftUI
struct ContentView: View {
@State private var text: String = “”
var body: some View {
SwiftDownEditor(text: $text)
.insetsSize(40)
.theme(Theme.BuiltIn.defaultDark.theme())
}
}
SwiftDown supports theming by using config .json
files as this one Then init your custom theme as below.
Theme(themePath: Bundle.main.path(forResource: “my-custom-theme”, ofType: “json”))
Recognize your user's voice elegantly without having to figure out authorization and audio engines. SwiftSpeech Examples Features Installation Getting Started ...
Example To run the example project, clone the repo, and run pod install from the Example directory first. Requirements iOS 14.0 Installation ...
SlidingRuler is a Swift package containing a SwiftUI control that acts like an linear infinite slider or a finite, more precise ...
SkeletonUI aims to bring an elegant, declarative syntax to skeleton loading animations. Get rid of loading screens or spinners and ...