Animations
React Native Skia offers integration with Reanimated v3, enabling the execution of animations on the UI thread. This integration is available starting from Reanimated v3. If you are using Reanimated v2, refer to the Reanimated 2 support section.
React Native Skia supports the direct usage of Reanimated's shared and derived values as properties. There is no need for functions like createAnimatedComponent
or useAnimatedProps
; simply pass the Reanimated values directly as properties.
tsx
import {useEffect } from "react";import {Canvas ,Circle ,Group } from "@shopify/react-native-skia";import {useDerivedValue ,useSharedValue ,withRepeat ,withTiming ,} from "react-native-reanimated";export constHelloWorld = () => {constsize = 256;constr =useSharedValue (0);constc =useDerivedValue (() =>size -r .value );useEffect (() => {r .value =withRepeat (withTiming (size * 0.33, {duration : 1000 }), -1);}, [r ,size ]);return (<Canvas style ={{flex : 1 }}><Group blendMode ="multiply"><Circle cx ={r }cy ={r }r ={r }color ="cyan" /><Circle cx ={c }cy ={r }r ={r }color ="magenta" /><Circle cx ={size /2}cy ={c }r ={r }color ="yellow"/></Group ></Canvas >);};
tsx
import {useEffect } from "react";import {Canvas ,Circle ,Group } from "@shopify/react-native-skia";import {useDerivedValue ,useSharedValue ,withRepeat ,withTiming ,} from "react-native-reanimated";export constHelloWorld = () => {constsize = 256;constr =useSharedValue (0);constc =useDerivedValue (() =>size -r .value );useEffect (() => {r .value =withRepeat (withTiming (size * 0.33, {duration : 1000 }), -1);}, [r ,size ]);return (<Canvas style ={{flex : 1 }}><Group blendMode ="multiply"><Circle cx ={r }cy ={r }r ={r }color ="cyan" /><Circle cx ={c }cy ={r }r ={r }color ="magenta" /><Circle cx ={size /2}cy ={c }r ={r }color ="yellow"/></Group ></Canvas >);};
We offer some Skia specific animation hooks, especially for paths.
Colors
For colors, React Native Skia uses a different storage format for than Reanimated.
This means that interpolateColor
from Reanimated won't work out of the box.
Instead you can use interpolateColors
from React Native Skia.
tsx
import {Canvas ,LinearGradient ,Fill ,// Use this function instead of interpolateColor from ReanimatedinterpolateColors ,vec ,} from "@shopify/react-native-skia";import {useEffect } from "react";import {useWindowDimensions } from "react-native";import {useDerivedValue ,useSharedValue ,withRepeat ,withTiming ,} from "react-native-reanimated";conststartColors = ["rgba(34, 193, 195, 0.4)","rgba(34,193,195,0.4)","rgba(63,94,251,1)","rgba(253,29,29,0.4)",];constendColors = ["rgba(0,212,255,0.4)","rgba(253,187,45,0.4)","rgba(252,70,107,1)","rgba(252,176,69,0.4)",];export constAnimatedGradient = () => {const {width ,height } =useWindowDimensions ();constcolorsIndex =useSharedValue (0);useEffect (() => {colorsIndex .value =withRepeat (withTiming (startColors .length - 1, {duration : 4000,}),-1,true);}, []);constgradientColors =useDerivedValue (() => {return [interpolateColors (colorsIndex .value , [0, 1, 2, 3],startColors ),interpolateColors (colorsIndex .value , [0, 1, 2, 3],endColors ),];});return (<Canvas style ={{flex : 1 }}><Fill ><LinearGradient start ={vec (0, 0)}end ={vec (width ,height )}colors ={gradientColors }/></Fill ></Canvas >);};
tsx
import {Canvas ,LinearGradient ,Fill ,// Use this function instead of interpolateColor from ReanimatedinterpolateColors ,vec ,} from "@shopify/react-native-skia";import {useEffect } from "react";import {useWindowDimensions } from "react-native";import {useDerivedValue ,useSharedValue ,withRepeat ,withTiming ,} from "react-native-reanimated";conststartColors = ["rgba(34, 193, 195, 0.4)","rgba(34,193,195,0.4)","rgba(63,94,251,1)","rgba(253,29,29,0.4)",];constendColors = ["rgba(0,212,255,0.4)","rgba(253,187,45,0.4)","rgba(252,70,107,1)","rgba(252,176,69,0.4)",];export constAnimatedGradient = () => {const {width ,height } =useWindowDimensions ();constcolorsIndex =useSharedValue (0);useEffect (() => {colorsIndex .value =withRepeat (withTiming (startColors .length - 1, {duration : 4000,}),-1,true);}, []);constgradientColors =useDerivedValue (() => {return [interpolateColors (colorsIndex .value , [0, 1, 2, 3],startColors ),interpolateColors (colorsIndex .value , [0, 1, 2, 3],endColors ),];});return (<Canvas style ={{flex : 1 }}><Fill ><LinearGradient start ={vec (0, 0)}end ={vec (width ,height )}colors ={gradientColors }/></Fill ></Canvas >);};