# Game Controller Support

:::android
First set the `SuperwallOption` `isGameControllerEnabled` to `true`:

```kotlin
Superwall.instance.options.isGameControllerEnabled = true
```

Then Superwall will automatically listen for gamepad events and forward them to your paywall!
:::

:::flutter
First set the `SuperwallOption` `isGameControllerEnabled` to `true`:

```dart
Superwall.instance.options.isGameControllerEnabled = true
```

Then Superwall will automatically listen for gamepad events and forward them to your paywall!
:::

:::expo
First set the `SuperwallOption` `isGameControllerEnabled` to `true`:

```typescript
Superwall.instance.options.isGameControllerEnabled = true
```

Then Superwall will automatically listen for gamepad events and forward them to your paywall!
:::