Nadeen Ashraf
11/27/2024, 1:47 PMUIKitInteropProperties(
// 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 !Pablichjenkov
11/27/2024, 1:55 PMNadeen Ashraf
11/27/2024, 1:56 PM