File tree Expand file tree Collapse file tree
webview/src/iosMain/kotlin/com/multiplatform/webview/web Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -4,7 +4,8 @@ import androidx.compose.runtime.Composable
44import androidx.compose.runtime.remember
55import androidx.compose.runtime.rememberCoroutineScope
66import androidx.compose.ui.Modifier
7- import androidx.compose.ui.interop.UIKitView
7+ import androidx.compose.ui.viewinterop.UIKitInteropProperties
8+ import androidx.compose.ui.viewinterop.UIKitView
89import com.multiplatform.webview.jsbridge.WebViewJsBridge
910import com.multiplatform.webview.util.toUIColor
1011import kotlinx.cinterop.ExperimentalForeignApi
@@ -142,5 +143,10 @@ fun IOSWebView(
142143 it.navigationDelegate = null
143144 onDispose(it)
144145 },
146+ properties =
147+ UIKitInteropProperties (
148+ isInteractive = true ,
149+ isNativeAccessibilityEnabled = true ,
150+ ),
145151 )
146152}
You can’t perform that action at this time.
0 commit comments