We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f40b28a commit 9996c8cCopy full SHA for 9996c8c
1 file changed
webview/src/iosMain/kotlin/com/multiplatform/webview/web/WebView.ios.kt
@@ -167,7 +167,11 @@ fun IOSWebView(
167
},
168
properties =
169
UIKitInteropProperties(
170
- interactionMode = UIKitInteropInteractionMode.NonCooperative,
+ interactionMode = if (state.webSettings.iOSWebSettings.scrollEnabled) {
171
+ UIKitInteropInteractionMode.NonCooperative
172
+ } else {
173
+ UIKitInteropInteractionMode.Cooperative()
174
+ },
175
isNativeAccessibilityEnabled = true,
176
),
177
)
0 commit comments