Michał Bert

Results 10 issues of Michał Bert

## Description This PR introduces new approach for RNGH on web as a response to issue #902. Main point is removing hammer.js and using pointer events instead. It is based...

This PR solves issue when buttons don't activate after enabling TalkBack. When TalkBack is enabled, buttons don't receive MotionEvents, hence they don't go through orchestrator. However, `performClick` method is still...

## Summary This PR adds support for custom layout animations created via `Keyframe` on web. ### Known limitations Currently `originX` and `originY` don't work because in CSS there's only `transform-origin`...

## Description It turns out that our code uses some deprecated functions. Also there were few more warnings, such as shadowed name or unused variables. Some of included changes require...

## Description While working on problems with scroll we discovered that Gesture Handler has many circular dependencies. This PR removes them from web implementation (the only one that's left is...

## Description This PR adds necessary typescript changes in order to build `Next.js` app. ## Test plan I've tested this changes on branch with Next Example using `yarn build`.

## Description This PR adds `Next.js` example to our repository. ## Test plan Well... run example app I guess? 1. `cd next-example` 2. `yarn dev` 3. Visit `localhost:3000`

## Description This PR aims to bring compatibility with `Next.js` apps ## Test plan Run Next.js app with Gesture Handler installed from package created from this PR.

## Description Currently our components (`BaseButton`, `RectButton` and `BorderlessButton`) don't support `refs`, so it is impossible to use methods like `measure`. This PR adds wrapper to these components, so that...

## Description On `web`, `anchor` and `focal` points are calculated with respect to `window`, not the actual handlers' `view`. This PR changes this behavior so that both of these points...