This site requires javascript.
Android Code Search
file:androidx/compose/ui/test/GestureScope.kt function:move
search
close
info_outline
more_vert
Result 1 of 1
content_copy
Search Result Root
androidx/platform/frameworks/support
keyboard_arrow_right
Branch
Branch
androidx-main
keyboard_arrow_right
Search Result Path
compose/ui/ui-test/src/commonMain/kotlin/androidx/compose/ui/test/
GestureScope.kt
content_copy
Preview
599:
600:
601:
)
fun
GestureScope.
move
To(pointerId: Int, position: Offset) =
delegateScope.touch { moveTo(pointerId, position) }
614:
615:
616:
)
fun
GestureScope.
move
To(position: Offset) = delegateScope.touch { moveTo(position) }
631:
632:
633:
)
fun
GestureScope.
move
PointerTo(pointerId: Int, position: Offset) =
delegateScope.touch { updatePointerTo(pointerId, position) }
648:
649:
650:
)
fun
GestureScope.
move
By(pointerId: Int, delta: Offset) =
delegateScope.touch { moveBy(pointerId, delta) }
664:
665:
666:
)
fun
GestureScope.
move
By(delta: Offset) = delegateScope.touch { moveBy(delta) }
682:
683:
684:
)
fun
GestureScope.
move
PointerBy(pointerId: Int, delta: Offset) =
delegateScope.touch { updatePointerBy(pointerId, delta) }
693:
694:
695:
)
fun
GestureScope.
move
() = delegateScope.touch { move() }
chevron_left
1
chevron_right
Results per page
10
We serve cookies on this site to analyze traffic, remember your preferences, and optimize your experience.
Got it
Open branch androidx-main
Help