User feedback
for indie apps

Drop-in Swift SDK. Feedback lands in your dashboard and optionally creates GitHub issues — without exposing user emails.

SettingsView.swift
import YapbackKit

struct SettingsView: View {
    @State private var showFeedback = false

    var body: some View {
        Button("Send Feedback") {
            showFeedback = true
        }
        .yapbackSheet(
            isPresented: $showFeedback,
            config: .myApp
        )
    }
}

SwiftUI Native

iOS 16+ and macOS 13+. Drop-in integration.

GitHub Issues

Auto-create issues from feedback submissions.

Privacy First

User emails stay in your dashboard, never on GitHub.