is there a way in compose semantic testing to perf...
# multiplatform
s
is there a way in compose semantic testing to performTouchInput and swipe from the edge to initiate swipe back? I’ve tried this…
Copy code
onRoot().performTouchInput {
    val start = Offset(0f, startHeight)
    val end = Offset(stopWidth, startHeight)
    swipe(start, end, 200L)
}
and a vanilla swipeRight()