Rahim Rahman

Results 49 comments of 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: ![fix-editor-snap-upward](https://user-images.githubusercontent.com/5550094/27313769-f4db9eee-552c-11e7-804e-6fb1ca8d2b4d.gif)

@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...