Skip to content

Commit

Permalink
docs: fix code example in "Tracking dynamic values" (#4361)
Browse files Browse the repository at this point in the history
  • Loading branch information
Egor-Kozlov authored Nov 19, 2024
1 parent f3ea0ff commit 2bb1fa8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/animations.md
Original file line number Diff line number Diff line change
Expand Up @@ -281,8 +281,8 @@ Animated.timing(opacity, {
toValue: pan.x.interpolate({
inputRange: [0, 300],
outputRange: [1, 0],
useNativeDriver: true,
}),
useNativeDriver: true,
}).start();
```

Expand Down
2 changes: 1 addition & 1 deletion website/versioned_docs/version-0.76/animations.md
Original file line number Diff line number Diff line change
Expand Up @@ -281,8 +281,8 @@ Animated.timing(opacity, {
toValue: pan.x.interpolate({
inputRange: [0, 300],
outputRange: [1, 0],
useNativeDriver: true,
}),
useNativeDriver: true,
}).start();
```

Expand Down

0 comments on commit 2bb1fa8

Please sign in to comment.