In-App Surveys Callbacks
Survey callbacks and flows (onShow, onDismiss, handlers) in KMP.
Flows
scope.launch {
SurveysKmp.onShow.collect {
// Survey UI is about to be shown
}
}scope.launch {
SurveysKmp.onDismiss.collect {
// Survey UI was dismissed
}
}Handlers (convenience)
SurveysKmp.setOnShowHandler {
// Called before survey UI is presented
}
SurveysKmp.setOnDismissHandler {
// Called after survey UI is dismissed
}Last updated