From 23790fe628c7aaeabe9c3e7f58e140da0832748b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ignacy=20=C5=81=C4=85tka?= Date: Tue, 12 Nov 2024 15:44:01 +0100 Subject: [PATCH 1/2] fix shared value broken link --- docs/docs/fundamentals/quickstart/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/docs/fundamentals/quickstart/index.md b/docs/docs/fundamentals/quickstart/index.md index b17b60704f..85e04aee81 100644 --- a/docs/docs/fundamentals/quickstart/index.md +++ b/docs/docs/fundamentals/quickstart/index.md @@ -29,7 +29,7 @@ To demonstrate how you would use the new API, let's make a simple app where you
We also need to define{' '} - + shared values {' '} to keep track of the ball position and create animated styles in order to be From 472c6ce06fd348bd411e79c88db9892481a6ce6f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ignacy=20=C5=81=C4=85tka?= Date: Wed, 13 Nov 2024 16:09:05 +0100 Subject: [PATCH 2/2] update ball example link, link invalid since PR #2919 --- docs/docs/fundamentals/quickstart/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/docs/fundamentals/quickstart/index.md b/docs/docs/fundamentals/quickstart/index.md index 85e04aee81..30cedb3ab8 100644 --- a/docs/docs/fundamentals/quickstart/index.md +++ b/docs/docs/fundamentals/quickstart/index.md @@ -53,4 +53,4 @@ To demonstrate how you would use the new API, let's make a simple app where you Note the `start` shared value. We need it to store the position of the ball at the moment we grab it to be able to correctly position it later, because we only have access to translation relative to the starting point of the gesture. -Now you can just add `Ball` component to some view in the app and see the results! (Or you can just check the code [here](https://github.com/software-mansion/react-native-gesture-handler/blob/main/example/src/new_api/reanimated/index.tsx) and see it in action in the Example app.) +Now you can just add `Ball` component to some view in the app and see the results! (Or you can just check the code [here](https://github.com/software-mansion/react-native-gesture-handler/blob/main/example/src/new_api/velocityTest/index.tsx) and see it in action in the Example app.)