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
- Replaces references with examples (those were kinda useless tbh)
- Add link to composition from composed gesture
- Moves hover remarks higher so they aren't below a ton of common
properties
Copy file name to clipboardexpand all lines: docs/docs/gestures/composed-gestures.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -5,7 +5,7 @@ sidebar_label: Composed gestures
5
5
sidebar_position: 13
6
6
---
7
7
8
-
Composed gestures (`Race`, `Simultaneous`, `Exclusive`) provide a simple way of building relations between gestures.
8
+
Composed gestures (`Race`, `Simultaneous`, `Exclusive`) provide a simple way of building relations between gestures. See [Gesture Composition](/docs/fundamentals/gesture-composition) for more details.
@@ -122,49 +151,3 @@ X coordinate of the current position of the pointer (finger or a leading pointer
122
151
Y coordinate of the current position of the pointer (finger or a leading pointer when there are multiple fingers placed) relative to the window. The value is expressed in point units. It is recommended to use it instead of [`y`](#y) in cases when the original view can be transformed as an effect of the gesture.
Copy file name to clipboardexpand all lines: docs/docs/gestures/hover-gesture.md
+5-4
Original file line number
Diff line number
Diff line change
@@ -59,6 +59,11 @@ function App() {
59
59
}
60
60
```
61
61
62
+
63
+
## Remarks
64
+
65
+
- Don't rely on `Hover` gesture to continue after the mouse button is clicked or the stylus touches the screen. If you want to handle both cases, [compose](/docs/fundamentals/gesture-composition) it with [`Pan` gesture](/docs/gestures/pan-gesture).
66
+
62
67
## Config
63
68
64
69
### Properties specific to `HoverGesture`:
@@ -115,7 +120,3 @@ Object that contains additional information about `stylus`. It consists of the f
115
120
-[`pressure`](https://developer.mozilla.org/en-US/docs/Web/API/PointerEvent/pressure) - indicates the normalized pressure of the stylus.
116
121
117
122
<BaseEventData />
118
-
119
-
## Remarks
120
-
121
-
- Don't rely on `Hover` gesture to continue after the mouse button is clicked or the stylus touches the screen. If you want to handle both cases, [compose](/docs/fundamentals/gesture-composition) it with [`Pan` gesture](/docs/gestures/pan-gesture).
0 commit comments