For everyone wondering, I found a "solution" to th...
# compose
s
For everyone wondering, I found a "solution" to this. Basically, I have to copy the code all the way down to awaitPointerSlopOrCancellation. Then, when it comes to check whether the
touchSlop
is surpassed:
Copy code
val fraction = 5f
            val notInDirection = abs(totalCrossPositionChange)
            if (inDirection / fraction < touchSlop && notInDirection * fraction > touchSlop) {
👌 1
✅ 2