Tomasz Żelawski

Results 33 issues of Tomasz Żelawski

### Description Currently, Reanimated uses a pattern of `useRef` with follow-up initialization for memoization: ```js function useCustomHook(){ const ref = useRef(null); if (ref.current === null){ ref.current = initialize(); }; };...

Maintainer issue

## Summary Fixes #5296. 1. Since this is potentially a JS-heavy fix, I'll gladly listen to suggestions and receive help with how to profile it. 2. I personally dislike how...

## Summary Currently `WorkletEventHandler` can only be attached to a single component - however, we don't check for that and it can lead to issues when using Reanimated. This PR...

## Summary Wanted to open this PR for a long time. Currently we use `Object.freeze` in development on objects after they were converted to a Shareable. This is problematic for...

## Summary Because we use ESlint rules that require a parses, proper amendments to the `.eslintrc.js` had to be made. Because of that we can also finally extend main `.eslintrc.js`...

## Summary This is a feature that will allow the user to workletize specific functions requested by the user, without the need to add `worklet` directive in them. It's done...

Area: Plugin

## Summary Due to changes to React Native app template, it uses Yarn 3.6.4 out of the box now. This version of Yarn cannot resolve packages from GitHub's pull request...

## About This pull request is a part of the effort of migrating to monorepo structure: - #5992 - #5993 - #5999 ## Summary This particular pull request setups our...