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

# Expo Setup

> Setup guide

## Install

```bash theme={null}
npx expo install rampkit-expo-dev react-native-webview react-native-pager-view react-native-root-siblings
```

## Initialize

```typescript theme={null}
import { RampKit } from "rampkit-expo-dev";

await RampKit.init({
  appId: "YOUR_APP_ID",
  onOnboardingFinished: () => {
    navigation.replace("Home");
  },
});
```

## Show

```typescript theme={null}
RampKit.showOnboarding();
```

Get your App ID from [RampKit Dashboard](https://rampkit.com) → Settings.
