Prompt
The two math primitives inside every Reanimated gesture:
clamp(value, lower, upper)interpolate(value, [inMin, inMax], [outMin, outMax], extrapolate)— linear mapping;extrapolateis'extend'(default, keep the line going) or'clamp'(pin to the output range)
Example: drag progress 0→1 mapping to translateY 0→−300.
Hints
Solution
Your Code
15 min