How to Build Simple Card Flip Animation in React Native Using ReAnimated V2

Jan 18, 2023

How to Build Simple Card Flip Animation in React Native Using ReAnimated V2

  • React Native
  • GeekyAnts
  • Development
  • Animation
  • Code

Author

Ankur Kumar Prajapati
Ankur Kumar PrajapatiSoftware Engineer III

Introduction

Objects in motion are always more attention-grabbing. The same goes for components in apps. This is why animations are crucial to delivering an excellent application experience.

Today, I will explain how to build a simple yet cool animation — the Card Flip. This can help you get started with Animations in React Native. We will be using Reanimated for this.

What is Reanimated?

Reanimated is a powerful and flexible API for animating components in React Native. It provides a low-level, declarative approach to animations, allowing developers to create complex and engaging animations with minimal code.

Unlike other animation libraries for React Native, Reanimated uses the native animation capabilities of the host platform, resulting in smooth and performant 60 FPS animations.

In this introductory example, we will explore its core concepts and how to use them.

Getting Started

We first need to create two Views of a card. Let us call them F=FrontView and B=BackView , and we need to position F behind B using the absolute position. We will be using Animated View to pass them animated styles later. 

Let us create basic cards and styles for them. You can style your cards however you like.

<Animated.View style={[Styles.front]>
	<Text>Front View</Text>
</Animated.View>
<Animated.View style={[Styles.back]}>
    <Text>Back View</Text>
</Animated.View>
front: {
   height: 400,
   width: 250,
   backgroundColor: "#D8D9CF",
   borderRadius: 16,
   position: "absolute",
   alignItems: "center",
   justifyContent: "center",
},
back: {
   height: 400,
   width: 250,
   backgroundColor: "#FF8787",
   borderRadius: 16,
   backfaceVisibility: "hidden",
   alignItems: "center",
   justifyContent: "center",
},

Now let us understand what we need to do to achieve the animation.

  • The BackView initial position will already be rotated to 180 degrees, with backfaceVisibility set to hidden. Hence, it is not visible at the start.
  • Next, rotate the Front Card from 0 to 180 degrees.
  • At the same time, rotate the Back View from 180 to 360 degrees.
  • Once step 2 and step 3 are done simultaneously, it will create a nice flip-rotate animation for us.

A Basic Illustration of What We Need To Do

Now let's create a shared value that we will use to drive our animation. Shared values are variables, as the name suggests, that are shared between UI thread and JS Thread.

const spin = useSharedValue<number>(0);

When we press the flip button, we will toggle the spin value between 0 and 1.

onPress={() => (spin.value = spin.value ? 0 : 1)}

When these values change, we will have to apply rotation to our cards, as discussed above.

To calculate our rotation style values for cards based on the spin shared value, we will use interpolate function available in Reanimated. It takes a shared value and input range of that shared value and gives us a value between output range.

So for our F view, we need to rotate it from 0 to 180 degrees when the spin value changes from 0 to 1.

const spinVal = interpolate(spin.value, [0, 1], [0, 180]);

And similarly, for the B view, we need to rotate it from 180 degrees to 360 degrees when the spin value changes from 0 to 1.

const spinVal = interpolate(spin.value, [0, 1], [180, 360]);

Now we cannot pass these to our cards as plain styles because these are animated values. For that, we will use the useAnimatedStyle hook present in Reanimated. It returns us a style object which we can pass to our Animated Views like this

const frontAnimatedStyle = useAnimatedStyle(() => {
   const spinVal = interpolate(spin.value, [0, 1], [0, 180]);
   return {
     transform: [
       {
         rotateY: withTiming(`${spinVal}deg`, { duration: 500 }),
       },
     ],
   };
 }, []);

And similarly, for the B view:

const backAnimatedStyle = useAnimatedStyle(() => {
   const spinVal = interpolate(spin.value, [0, 1], [180, 360]);
   return {
     transform: [
       {
         rotateY: withTiming(`${spinVal}deg`, { duration: 500 }),
       },
     ],
   };
 }, []);

Now let's add these animated styles to our cards.

<Animated.View style={[Styles.front, frontViewStyle]}>

After we have completed the steps, your card should look like the demo I have attached below. We can also see that our animation runs smoothly at 60 FPS without any stutter.


Conclusion

I hope this article was helpful in understanding the steps involved in Card Flip animation in React Native. You can now build some cool animations with Reanimated and share your experiences with us.


Subscribe to Our Newsletter

More from the engineering frontline.

Dive deep into our research and insights on design, development, and the impact of various trends to businesses.
Insight
The Agent Can See Your App. How Often Can It Look?
Sep 4, 2026

The Agent Can See Your App. How Often Can It Look?

AI coding agents can now interact with mobile apps, but their effectiveness depends on iteration speed. This blog explores how React Native architecture influences feedback loops and AI-driven developer productivity.

Insight
Building Interactive Cards from Design JSON Without Killing Your Feed: Overlays, Video, Mute/Unmute, and Lag-Free Lists
Sep 1, 2026

Building Interactive Cards from Design JSON Without Killing Your Feed: Overlays, Video, Mute/Unmute, and Lag-Free Lists

Learn how to turn design JSON into interactive, video-enabled cards using overlays, smart media controls, caching, and virtualization without slowing down high-cardinality feeds.

Insight
The Bug That Doesn't Show Up in Code Review: Why Your Flutter Web App Reloads on Safari
Aug 19, 2026

The Bug That Doesn't Show Up in Code Review: Why Your Flutter Web App Reloads on Safari

A real-world look at how oversized images can trigger Safari reloads and iOS crashes in Flutter apps and how smarter image decoding prevents them.

Insight
From Prompting to Process: What Changed When Flutter Shipped Agent Skills
Aug 19, 2026

From Prompting to Process: What Changed When Flutter Shipped Agent Skills

This blog explores how Flutter Agent Skills improve AI-assisted development by combining official framework workflows with project-specific guidance for more consistent development.

Insight
Why Everything Your AI Builds Looks the Same
Aug 19, 2026

Why Everything Your AI Builds Looks the Same

This blog explores why AI-generated interfaces often look alike and explains how design systems, product context, and reusable engineering practices help teams build distinctive, scalable

Technology
How We Built the Missing Bridge from Code to Figma
Jul 10, 2026

How We Built the Missing Bridge from Code to Figma

This blog explores how AI-generated React apps get turned into fully editable, designer-ready Figma files by reading React Fiber instead of the DOM.

Technology
Building a Resilient Hybrid-Cloud Network with WireGuard HA, Route-Based Failover, and Deep Observability
Jun 27, 2026

Building a Resilient Hybrid-Cloud Network with WireGuard HA, Route-Based Failover, and Deep Observability

A practical breakdown of building resilient AWS-to-on-premises connectivity with WireGuard HA, active-standby failover, and deep packet-forwarding observability.

The Right Conversation Can

Save You Six Months.

Book a call
How to Build Simple Card Flip Animation in React Native Using ReAnimated V2- GeekyAnts