> ## 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.

# Minimal iOS Example

> Initialization and flow presentation example

## Minimal iOS example

```swift theme={null}
import SwiftUI
import RampKit

@main
struct MyApp: App {
  init() {
    RampKit.initSdk(apiKey: "YOUR_API_KEY")
  }

  var body: some Scene {
    WindowGroup {
      ContentView()
    }
  }
}
```
