Following the codelab for gesture handling, specif...
# compose
s
Following the codelab for gesture handling, specifically step #8 in Animating elements in Jetpack Compose, I see that having multiple
awaitPointerEventScope
blocks gives the lint error that says
Returning from awaitPointerEventScope may cause some input events to be dropped
. And in the second call
Suspicious use of multiple awaitPointerEventScope blocks. Using multiple awaitPointerEventScope blocks may cause some input events to be dropped.
Does that mean that the codelab needs some updating? Maybe there’s some better way to do what they are trying to do there instead?