Is there a way to prevent AndroidView Composable f...
# compose-android
m
Is there a way to prevent AndroidView Composable from consuming gestures, currently if I have a normal composable behind an AndroidView Composable, I can't receive gestures in the normal Composable.
Copy code
Box {
    MyComposable(
         modifier = Modifier.pointerInput(Unit) {
             ... // Nothing received
         }
     )
    AndroidView(...) // Just a view without gestures
}