You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
## Description
Fixed the example provided with the `Reanimated Swipeable` docs, it
looks like a fragment of it was missing.
Also, what's the verdict on [this
issue](#2962 (comment))?
Today I had to take a look at these docs again and it really occurred to
me the way it's currently written can be really confusing.
Here's my proposition, it removes the `[0, +]` mapping in favour of a
verbose explanation:
> ### `renderRightActions`
>
> accepts a function.
> The function receives the following arguments:
>
> - `progress` value representing swiping progress relative to the width
of the returned element.
> `progress` is `0` when `swipeable` is closed, `1` when `right` action
is fully visible.
>
> - `translation` horizontal translation of `swipeable` in pixels.
> - `swipeable` provides an object exposing the methods listed
[here](#methods)
>
> This function must return a `ReactNode`.
side-by-side comparison:
old|new
---|---
|
Of course this change applies to both `renderLeftActions` and
`renderRightActions`
Copy file name to clipboardexpand all lines: docs/docs/components/reanimated_swipeable.md
+88-82
Original file line number
Diff line number
Diff line change
@@ -29,7 +29,8 @@ import Swipeable from 'react-native-gesture-handler/ReanimatedSwipeable';
29
29
30
30
### `friction`
31
31
32
-
a number that specifies how much the visual interaction will be delayed compared to the gesture distance. e.g. value of 1 will indicate that the swipeable panel should exactly follow the gesture, 2 means it is going to be two times "slower".
32
+
a number that specifies how much the visual interaction will be delayed compared to the gesture distance.
33
+
e.g. value of `1` will indicate that the swipeable panel should exactly follow the gesture, `2` means it is going to be two times "slower".
33
34
34
35
### `leftThreshold`
35
36
@@ -41,81 +42,86 @@ distance from the right edge at which released panel will animate to the open st
41
42
42
43
### `dragOffsetFromLeftEdge`
43
44
44
-
distance that the panel must be dragged from the left edge to be considered a swipe. The default value is 10.
45
+
distance that the panel must be dragged from the left edge to be considered a swipe. The default value is `10`.
45
46
46
47
### `dragOffsetFromRightEdge`
47
48
48
-
distance that the panel must be dragged from the right edge to be considered a swipe. The default value is 10.
49
+
distance that the panel must be dragged from the right edge to be considered a swipe. The default value is `10`.
49
50
50
51
### `overshootLeft`
51
52
52
-
a boolean value indicating if the swipeable panel can be pulled further than the left actions panel's width. It is set to `true` by default as long as the left panel render method is present.
53
+
a boolean value indicating if the swipeable panel can be pulled further than the left actions panel's width. It is set to `true` by default as long as the left panel render function is present.
53
54
54
55
### `overshootRight`
55
56
56
-
a boolean value indicating if the swipeable panel can be pulled further than the right actions panel's width. It is set to `true` by default as long as the right panel render method is present.
57
+
a boolean value indicating if the swipeable panel can be pulled further than the right actions panel's width. It is set to `true` by default as long as the right panel render function is present.
57
58
58
59
### `overshootFriction`
59
60
60
-
a number that specifies how much the visual interaction will be delayed compared to the gesture distance at overshoot. Default value is 1, it mean no friction, for a native feel, try 8 or above.
61
+
a number that specifies how much the visual interaction will be delayed compared to the gesture distance at overshoot. Default value is `1`, it mean no friction, for a native feel, try `8` or above.
61
62
62
63
### `onSwipeableOpen`
63
64
64
-
method that is called when action panel gets open (either right or left). Takes swipe direction as
65
-
an argument.
65
+
a function that is called when `swipeable` is opened (either right or left).
66
+
Receives swipe direction as an argument.
66
67
67
68
### `onSwipeableClose`
68
69
69
-
method that is called when action panel is closed. Takes swipe direction as
70
-
an argument.
70
+
a function that is called when `swipeable`is closed.
71
+
Receives swipe direction as an argument.
71
72
72
73
### `onSwipeableWillOpen`
73
74
74
-
method that is called when action panel starts animating on open (either right or left). Takes swipe direction as
75
-
an argument.
75
+
a function that is called when `swipeable`starts animating on open (either right or left).
76
+
Receives swipe direction as an argument.
76
77
77
78
### `onSwipeableWillClose`
78
79
79
-
method that is called when action panel starts animating on close. Takes swipe direction as
80
-
an argument.
80
+
a function that is called when `swipeable`starts animating on close.
81
+
Receives swipe direction as an argument.
81
82
82
83
### `renderLeftActions`
83
84
84
-
method that is expected to return an action panel that is going to be revealed from the left side when user swipes right.
85
-
This map describes the values to use as inputRange for extra interpolation:
85
+
a function that returns a component which will be rendered under the swipeable after swiping it to the right.
86
+
The function receives the following arguments:
86
87
87
-
SharedValue: [startValue, endValue]
88
+
-`progress` - a `SharedValue` representing swiping progress relative to the width of the returned element.
89
+
- Equals `0` when `swipeable` is closed, `1` when `swipeable` is opened.
90
+
- When the element overshoots it's opened position the value tends towards `Infinity`.
91
+
-`translation` - a horizontal offset of the `swipeable` relative to its closed position.
92
+
-`swipeableMethods` - provides an object exposing the methods listed [here](#methods).
88
93
89
-
progress: [0, 1]
90
-
91
-
drag: [0, +]
94
+
This function must return a `ReactNode`.
92
95
93
96
To support `rtl` flexbox layouts use `flexDirection` styling.
94
97
95
98
### `renderRightActions`
96
99
97
-
method that is expected to return an action panel that is going to be revealed from the right side when user swipes left.
98
-
This map describes the values to use as inputRange for extra interpolation:
99
-
100
-
SharedValue: [startValue, endValue]
100
+
a function that returns a component which will be rendered under the swipeable after swiping it to the left.
101
+
The function receives the following arguments:
101
102
102
-
progress: [0, 1]
103
+
-`progress` - a `SharedValue` representing swiping progress relative to the width of the returned element.
104
+
- Equals `0` when `swipeable` is closed, `1` when `swipeable` is opened.
105
+
- When the element overshoots it's opened position the value tends towards `Infinity`.
106
+
-`translation` - a horizontal offset of the `swipeable` relative to its closed position.
107
+
-`swipeableMethods` - provides an object exposing the methods listed [here](#methods).
103
108
104
-
drag: [0, -]
109
+
This function must return a `ReactNode`.
105
110
106
111
To support `rtl` flexbox layouts use `flexDirection` styling.
107
112
108
113
### `containerStyle`
109
114
110
-
style object for the container (Animated.View), for example to override `overflow: 'hidden'`.
115
+
style object for the container (`Animated.View`), for example to override `overflow: 'hidden'`.
111
116
112
117
### `childrenContainerStyle`
113
118
114
-
style object for the children container (Animated.View), for example to apply `flex: 1`.
119
+
style object for the children container (`Animated.View`), for example to apply `flex: 1`.
115
120
116
121
### `enableTrackpadTwoFingerGesture` (iOS only)
117
122
118
-
Enables two-finger gestures on supported devices, for example iPads with trackpads. If not enabled the gesture will require click + drag, with enableTrackpadTwoFingerGesture swiping with two fingers will also trigger the gesture.
123
+
Enables two-finger gestures on supported devices, for example iPads with trackpads.
124
+
If not enabled the gesture will require click + drag, with `enableTrackpadTwoFingerGesture` swiping with two fingers will also trigger the gesture.
@@ -140,80 +146,80 @@ Using reference to `Swipeable` it's possible to trigger some actions on it
140
146
141
147
### `close`
142
148
143
-
method that closes component.
149
+
a method that closes component.
144
150
145
151
### `openLeft`
146
152
147
-
method that opens component on left side.
153
+
a method that opens component on left side.
148
154
149
155
### `openRight`
150
156
151
-
method that opens component on right side.
157
+
a method that opens component on right side.
152
158
153
159
### `reset`
154
160
155
-
method that resets the swiping states of this `Swipeable` component.
161
+
a method that resets the swiping states of this `Swipeable` component.
156
162
157
163
Unlike method `close`, this method does not trigger any animation.
158
164
159
165
### Example:
160
166
161
-
See the [swipeable example](https://github.com/software-mansion/react-native-gesture-handler/blob/main/example/src/release_tests/swipeableReanimation/index.tsx) from GestureHandler Example App.
167
+
For a more in-depth presentation of differences between the new and the legacy implementations,
168
+
see [swipeable example](https://github.com/software-mansion/react-native-gesture-handler/blob/main/example/src/release_tests/swipeableReanimation/index.tsx) from GestureHandler Example App.
0 commit comments