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