Customizing Survey Behavior

Customize survey behavior (welcome screen, auto-show) in KMP.

Welcome screen

Show or hide the welcome screen before the survey:

Kotlin
SurveysKmp.setShouldShowWelcomeScreen(true)

Auto-show

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

Kotlin
SurveysKmp.setAutoShowingEnabled(true)

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

Last updated