Rahim Rahman
Rahim Rahman
@neiker @layik @ohtangza have you guys been able to remedy this issue? I'm having the same issue. cc: @wkh237
I've fixed the issue: 
@udarts i have a PR. You can see my solution: https://github.com/wix/react-native-zss-rich-text-editor/pull/33
I had this same problem but then I realized that I have my `src/` inside my .npmignore file. According to: https://www.npmjs.com/package/postinstall-build#excluding-source-files-via-npmignore-or-files > Excluding source files via .npmignore or files >...
I've made some changes and was able to get it to work. I don't know much Java so I'm sure there is a better way to do this. Check out:...
@hanzei thanks for flagging me. @Kshitij-Katiyar few things: * let's use @testing-library/react instead of enzyme. Enzyme will not work with React 17+ (React 19 has just been released). * let's...
Unrelated to the problem here, but I'm looking at this component and it is kinda concerning at how many Views this component will be generating. If the number is `999`,...
@larkox is correct, the useMemo will be triggered every time the component re-renders since the dependency is an object (array). If you switch that to a string `animateToNumberString`, that would...
@Rajat-Dabade In my opinion, the fix is something that is needed soon-ish, whereas the re-write is my recommendation, and might be added in the roadmap in the future, or might...
@Rajat-Dabade I use AnimatedNumber component as a topic of my presentation a few weeks ago, about how many Views this component is generating and the potential impact on performance. The...