import * as ProgressPrimitive from '@rn-primitives/progress'; import * as React from 'react'; import { Platform, View } from 'react-native'; import Animated, { Extrapolation, interpolate, useAnimatedStyle, useDerivedValue, withSpring, } from 'react-native-reanimated'; import { cn } from '@/lib/utils'; const Progress = React.forwardRef< ProgressPrimitive.RootRef, ProgressPrimitive.RootProps & { indicatorClassName?: string; } >(({ className, value, indicatorClassName, ...props }, ref) => { return ( ); }); Progress.displayName = ProgressPrimitive.Root.displayName; export { Progress }; function Indicator({ value, className }: { value: number | undefined | null; className?: string }) { const progress = useDerivedValue(() => value ?? 0); const indicator = useAnimatedStyle(() => { return { width: withSpring( `${interpolate(progress.value, [0, 100], [1, 100], Extrapolation.CLAMP)}%`, { overshootClamping: true } ), }; }); if (Platform.OS === 'web') { return ( ); } return ( ); }