Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.rampkit.com/llms.txt

Use this file to discover all available pages before exploring further.

Variables and state

Use variables to personalize flows on iOS. Values are synced from the app to RampKit and referenced in the builder. Set user attributes at runtime:
RampKit.setUserAttributes([
  "plan": "pro",
  "country": "US",
  "daysSinceInstall": 3
])
Read variables inside your app:
let headline = RampKit.variable("paywallHeadline") ?? "Upgrade"
let cta = RampKit.variable("primaryCta") ?? "Continue"