onMove

open override fun onMove(start: Xy, end: Xy)

Single pointer move event. A single pointer move event is defined as a pointer down, followed by a move, followed by a pointer up.

Parameters

start

is the previous position involved in move action

end

is the current position involved in move action


var onMove: (start: Xy, end: Xy) -> Unit?

Single pointer move event. Lambda Signature: (start: Xy, end: Xy) -> Unit A single pointer move event is defined as a pointer down, followed by a move, followed by a pointer up.

Parameters

start

is the previous position involved in move action

end

is the current position involved in move action