Quickstart
Add FlwKit to your iOS app and ship your first live flow in under 5 minutes.
Get the SDK installed, configured, and rendering a real flow from the dashboard — no backend changes required.
Create an app
Sign in to the FlwKit dashboard and create a new app. Your API key is shown once at creation — copy it now and store it securely.
The API key cannot be retrieved after creation. If you lose it, regenerate a new one from the app settings.
Install the SDK
Add the FlwKit iOS SDK via Swift Package Manager.
- In Xcode, go to File → Add Package Dependencies...
- Enter the repository URL:
https://github.com/FlwKit/flwkit_ios.git - Select Up to Next Major Version from
0.1.0and add to your target.
See Installation for a Package.swift snippet and full requirements.
Build your first flow
In the dashboard, go to Flows → New flow. Add at least a Header block and a CTA block with action set to complete, then click Publish. Set the flow as Active so the SDK serves it.
Only one flow can be active per app at a time. The SDK automatically fetches whichever flow has isActive: true.
Display the flow
Add FlwKitFlowView anywhere in your SwiftUI view hierarchy. The active flow is fetched and rendered automatically.