HomeAnimated.loop in React Native doesn't make the animation loop on web

Animated.loop in React Native doesn't make the animation loop on web

Published: 5/31/2023

It took me a while of testing, but whatever I tried resulted in one animation loop when compiling a React Native component for the Web. Turns out, there's one parameter that was causing it.

Whenever you create a looped animation with Animated.loop() and Animated.timing(), remember about the parameter useNativeDriver in Animated.timing: it has to be false for web, as there's no native driver per sē. For example:

import MaterialCommunityIcons from '@expo/vector-icons/MaterialCommunityIcons';

const AnimatedIconComponent = Animated.createAnimatedComponent(MaterialCommunityIcons);

const spinValue = new Animated.Value(0);

Animated.loop(
  Animated.timing(
    spinValue,
    {
      toValue: 1,
      duration: 1000,
      easing: Easing.linear,
      // prevents loop from working on the 'web', set to true only on devices
      useNativeDriver: false
    }
  ))
.start()

// Next, interpolate beginning and end values (in this case 0 and 1)
const spin = spinValue.interpolate({
  inputRange: [0, 1],
  outputRange: ['0deg', '360deg']
});

return <AnimatedIconComponent name="loading" size={32} color="black" style={{ transform: [{ rotate: spin }] }} />

About Code with Node.js

This is a personal blog and reference point of a Node.js developer.

I write and explain how different Node and JavaScript aspects work, as well as research popular and cool packages, and of course fail time to time.