Manage your app configuration and SDK key.
app_live_demo_serenity_12345678These colors and fonts apply to all your onboarding screens.
Add Onvert to your mobile app in minutes.
Install
// Swift Package Manager // In Xcode: File → Add Package Dependencies // URL: https://github.com/onvert/onvert-swift import Onvert // In your AppDelegate or @main App: Onvert.configure(apiKey: "app_live_demo_serenity_12345678")
Usage
// Present a flow in any UIViewController or SwiftUI View
import Onvert
// SwiftUI
struct ContentView: View {
var body: some View {
OnvertView(flowId: "your-flow-id")
}
}
// UIKit
let vc = OnvertViewController(flowId: "your-flow-id")
present(vc, animated: true)Your API key is pre-filled above. Keep it secret — do not commit to source control.
Deleting this app will remove all flows, screens, and analytics data.