Travis Griggs
06/05/2023, 5:23 PMBox
GoogleMap.fullSize
Canvas
.fullSize
.pointerInput { detectDragGesturesAfterLongPress(...) }
In this configuration, the Canvas eats ALL events, and none make it to the map below. But on accident, I just discovered that the following gives me the desired effect. But I really don't understand why:
Box
GoogleMap.fullSize
Canvas
.fullSize
.pointerInteropFilter { false }
.pointerInput { detectDragGesturesAfterLongPress(...) }
Can anyone help me understand this?