Skip to content

Commit

Permalink
fix(native): missing pointerId in pointer events
Browse files Browse the repository at this point in the history
  • Loading branch information
moose96 committed Sep 6, 2024
1 parent 449b7f4 commit b26042d
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions packages/fiber/src/native/Canvas.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -149,6 +149,7 @@ const CanvasImpl = /*#__PURE__*/ React.forwardRef<View, Props>(
offsetX: gestureEvent.nativeEvent.locationX,
offsetY: gestureEvent.nativeEvent.locationY,
pointerType: 'touch',
pointerId: gestureEvent.nativeEvent.identifier,
}) as unknown as Event,
)

Expand Down

0 comments on commit b26042d

Please sign in to comment.