We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d1f11eb commit d2733c2Copy full SHA for d2733c2
android/src/main/java/com/formbricks/android/webview/FormbricksViewModel.kt
@@ -51,11 +51,17 @@ class FormbricksViewModel : ViewModel() {
51
function onResponseCreated() {
52
FormbricksJavascript.message(JSON.stringify({ event: "onResponseCreated" }));
53
};
54
+
55
+ let setResponseFinished = null;
56
+ function getSetIsResponseSendingFinished(callback) {
57
+ setResponseFinished = callback;
58
+ }
59
60
function loadSurvey() {
61
const options = JSON.parse(json);
62
const surveyProps = {
63
...options,
64
+ getSetIsResponseSendingFinished,
65
onDisplayCreated,
66
onResponseCreated,
67
onClose,
0 commit comments