handleTouchEnd static method
void
handleTouchEnd(
- RenderContext<
LoadInstanceContext> context, - int nodeId,
- int rootId,
- double x,
- double y,
Implementation
static void handleTouchEnd(
RenderContext context,
int nodeId,
int rootId,
double x,
double y,
) {
context.renderBridgeManager.sendGestureEvent(
rootId,
nodeId,
kTouchEnd,
{
kKeyPageX: x,
kKeyPageY: y,
},
);
}