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