Hello everyone. I want to implement navigation in ...
# compose-ios
n
Hello everyone. I want to implement navigation in my app using decompose and its PredictiveBackGesture api, however i have some screens containing native UIViews wrapped in UIKitView composable, which i give the following properties:
Copy code
UIKitInteropProperties(
    // Disable cooperative gesture handling
    interactionMode = UIKitInteropInteractionMode.NonCooperative,
    // Disable native accessibility features
    isNativeAccessibilityEnabled = false,
)
as I want to enable interaction with the native view. Now obviously the Predictive back swiping will not work in this case as the Native view consumes all events, but at the same time I need to have a non-cooperative interaction mode as my UIView needs to be fully interactive. Does anyone have any ideas on how to implement something of this sort? Thanks in advance !
p
There is a specific channel for Decompose #C03H3N51SKT
n
Thank you , was not aware of that channel!
👍 1