Skip to content

Latest commit

 

History

History
32 lines (20 loc) · 1.16 KB

File metadata and controls

32 lines (20 loc) · 1.16 KB

react-native-ease Example

A 3D particle cube demo comparing react-native-ease (EaseView) against Reanimated CSS Transitions.

~2000 particles animated in a wave pattern with spring physics, opacity, scale, rotation, and explode effects.

The Comparison

EaseView runs animations directly on Core Animation (iOS) and ObjectAnimator (Android). Zero JS thread involvement.

Reanimated CSS Transitions uses its C++ worklet engine on the UI thread.

Both tabs render the same 3D cube. Toggle JS Load to block the JS thread and see how each engine handles it.

Stack

Getting Started

npm install
cd ios && pod install && cd ..
yarn ios

Credits