From 30701a15edda28b2ed368c36d12b2c5d2eea9534 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Patrycja=20Kali=C5=84ska?= <59940332+patrycjakalinska@users.noreply.github.com> Date: Tue, 18 Jun 2024 11:24:58 +0200 Subject: [PATCH] docs: Adjust expandable code (#6133) Before: ![image](https://github.com/software-mansion/react-native-reanimated/assets/59940332/7611cc94-4d27-49b6-be52-bfc85150cc3a) After: image --- packages/docs-reanimated/blog/slider.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/packages/docs-reanimated/blog/slider.md b/packages/docs-reanimated/blog/slider.md index f188d5a3e81..8951a77665a 100644 --- a/packages/docs-reanimated/blog/slider.md +++ b/packages/docs-reanimated/blog/slider.md @@ -14,7 +14,7 @@ import CollapsibleCode from '@site/src/components/CollapsibleCode'; We use the `useSharedValue` hook to store the offset of the slider handle, allowing for smooth animation during sliding. - + This example is done using [Pan gesture](https://docs.swmansion.com/react-native-gesture-handler/docs/gestures/pan-gesture) from `react-native-gesture-handler` library. It adjusts the handle's position and width of the box accordingly to the current offset. The offset is a [shared value](/docs/fundamentals/glossary#shared-value) and is updated during the `onChange` event of the pan gesture. @@ -33,14 +33,14 @@ The `useAnimatedStyle` hook is used to create animated styles for both the box a Slider - + Leveraging animated props allows us to run them on the UI thread instead of the JS thread. To prevent unnecessary re-renders when the text displaying the current width of the box changes, we used the `useAnimatedProps` hook. -Additionally, we opted for **TextInput** instead of **Text** because **TextInput** has a `value` property that can be animated, whereas **Text** only has children. +Additionally, we opted for **TextInput** instead of **Text** because **TextInput** has a `text` property that can be animated, whereas **Text** only has children. This approach also enabled us to animate **TextInput** using [shared values](/docs/fundamentals/glossary#shared-value). Slider - +