Skip to content

Instantly share code, notes, and snippets.

@kevnoutsawo
kevnoutsawo / gist:d5779c71b703d58f13833e2e268dbea8
Created March 18, 2025 06:47
React Native animated switch component
// Inspiration: https://dribbble.com/shots/4167815-Switcher-XXXIV
// Feel free to reuse in your projects
import React, { memo, useMemo, useCallback } from 'react';
import { Pressable, StyleSheet, View } from 'react-native';
import { MotiView } from 'moti';
import Animated, {
Easing,
useSharedValue,
useAnimatedStyle,