@shopify/react-native-skia — 2D graphics library.
1import { Canvas, Circle, Rect } from "@shopify/react-native-skia";23function Drawing() {4 return (5 <Canvas style={{ flex: 1 }}>6 <Circle7 cx={128}8 cy={128}9 r={64}10 color="blue"11 />12 <Rect13 x={64}14 y={64}15 width={128}16 height={128}17 color="red"18 />19 </Canvas>20 );21}
With animations:
1import { useValue, useComputedValue } from "@shopify/react-native-skia";23const x = useValue(0);4const opacity = useComputedValue(() => x.current / 300, [x]);
Use cases: