The Zuuppa Swift SDK (zsdk_swift) lets your iOS app sell tickets to a Zuuppa event without sending the buyer anywhere else. You present one full-screen SwiftUI view with an event id, and the SDK runs the entire purchase flow:
eventId.Add the package, then present the flow:
import SwiftUI
import zsdk_swift
struct EventButton: View {
@State private var showTickets = false
var body: some View {
Button("Buy Tickets") { showTickets = true }
.zuuppaTickets(
isPresented: $showTickets,
eventId: "your-event-uuid"
)
}
}That’s it. Everything else is handled inside the SDK.