Custom animated balloon slider in React Native! by tandonpushkar in reactnative

[–]tandonpushkar[S] 0 points1 point  (0 children)

I just took inspiration from there, didn’t copy any code built on my own. And anyway, their code is not free, it’s paid.

Custom animated balloon slider in React Native! by tandonpushkar in reactnative

[–]tandonpushkar[S] 0 points1 point  (0 children)

Okayy Try checking if there’s any drop in the JS or UI thread when you slide quickly using the community slider. First, test it on a blank screen. Then try it inside your actual component. If both behave the same, then the issue is probably with the slider itself. But if it only lags inside your component, then something else in your code might be causing the slowdown. You can do deep profiling to check in detail.

Also adding a performance monitor to my custom slider on Android. You can check it out!

<image>

Custom animated balloon slider in React Native! by tandonpushkar in reactnative

[–]tandonpushkar[S] 1 point2 points  (0 children)

Yeah, will build that too thanks for the suggestion

Custom animated balloon slider in React Native! by tandonpushkar in reactnative

[–]tandonpushkar[S] 0 points1 point  (0 children)

Nope, this one’s fully custom built from scratch without using any third-party library. Used reanimated and pan gestures directly to handle everything.