Hi. Im trying to add mkmapview to iOS app. The iss...
# compose-ios
g
Hi. Im trying to add mkmapview to iOS app. The issue is that the map does not respond to click and drag, but responds to double click or long clicks I have just tried this in a new project from here https://kmp.jetbrains.com/ but with compose version 1.7.0-rc01. All is good with version 1.6.11. is this issue already reported? could not find much info and downgrading the plugin will cause me other issues
Copy code
@Composable
fun App() {
    MaterialTheme {
        UIKitView(
            factory = { MKMapView() },
            modifier = Modifier.fillMaxSize(),
            update = {

            },
            properties = UIKitInteropProperties(
                isInteractive = true,
                isNativeAccessibilityEnabled = true
            )
        )
    }
}
j
g
Huge thanks. got it working with
Copy code
UIKitInteropProperties(
                interactionMode = UIKitInteropInteractionMode.NonCooperative
            )
👍 1
e
Thank you I was running the same problem, it is fixed now
k
saved my day, thanks!