# Customizing Survey Behavior

### Welcome screen

Show or hide the welcome screen before the survey:

{% code title="Kotlin" %}

```kotlin
SurveysKmp.setShouldShowWelcomeScreen(true)
```

{% endcode %}

### Auto-show

When enabled, surveys are shown automatically when they are available and match targeting rules:

{% code title="Kotlin" %}

```kotlin
SurveysKmp.setAutoShowingEnabled(true)
```

{% endcode %}

When disabled, you control when to show surveys (e.g. via `SurveysKmp.showSurveyIfAvailable()` or `SurveysKmp.showSurvey(token)`).
