Drop-in Swift SDK. Feedback lands in your dashboard and optionally creates GitHub issues — without exposing user emails.
import YapbackKit
struct SettingsView: View {
@State private var showFeedback = false
var body: some View {
Button("Send Feedback") {
showFeedback = true
}
.yapbackSheet(
isPresented: $showFeedback,
config: .myApp
)
}
}iOS 16+ and macOS 13+. Drop-in integration.
Auto-create issues from feedback submissions.
User emails stay in your dashboard, never on GitHub.