Skip to content

Commit 5fcf4df

Browse files
authored
Update examples links (#1405)
1 parent 29f7a7c commit 5fcf4df

File tree

11 files changed

+12
-12
lines changed

11 files changed

+12
-12
lines changed

docs/docs/api/components/drawer-layout.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ component or function. Children is a component which is rendered by default and
109109

110110
## Example:
111111

112-
See the [drawer example](https://github.com/software-mansion/react-native-gesture-handler/blob/master/examples/Example/horizontalDrawer/index.tsx) from [GestureHandler Example App](example.md) or view it directly on your phone by visiting [our expo demo](https://snack.expo.io/@adamgrzybowski/react-native-gesture-handler-demo).
112+
See the [drawer example](https://github.com/software-mansion/react-native-gesture-handler/blob/master/examples/Example/src/horizontalDrawer/index.tsx) from [GestureHandler Example App](example.md) or view it directly on your phone by visiting [our expo demo](https://snack.expo.io/@adamgrzybowski/react-native-gesture-handler-demo).
113113

114114
```js
115115
class Drawerable extends Component {

docs/docs/api/components/swipeable.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ method that opens component on right side.
131131

132132
### Example:
133133

134-
See the [swipeable example](https://github.com/software-mansion/react-native-gesture-handler/blob/master/examples/Example/swipeable/index.tsx) from [GestureHandler Example App](example.md) or view it directly on your phone by visiting [our expo demo](https://snack.expo.io/@adamgrzybowski/react-native-gesture-handler-demo).
134+
See the [swipeable example](https://github.com/software-mansion/react-native-gesture-handler/blob/master/examples/Example/src/swipeable/index.tsx) from [GestureHandler Example App](example.md) or view it directly on your phone by visiting [our expo demo](https://snack.expo.io/@adamgrzybowski/react-native-gesture-handler-demo).
135135

136136
```js
137137
import React, { Component } from 'react';

docs/docs/api/components/touchables.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,4 +45,4 @@ import {
4545
} from 'react-native-gesture-handler';
4646
```
4747

48-
For a comparison of both touchable implementations see our [touchables example](https://github.com/software-mansion/react-native-gesture-handler/blob/master/examples/Example/touchables/index.tsx)
48+
For a comparison of both touchable implementations see our [touchables example](https://github.com/software-mansion/react-native-gesture-handler/blob/master/examples/Example/src/touchables/index.tsx)

docs/docs/api/gesture-handlers/fling-gh.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ Y coordinate of the current position of the pointer (finger or a leading pointer
5454

5555
## Example
5656

57-
See the [fling example](https://github.com/software-mansion/react-native-gesture-handler/blob/master/examples/Example/fling/index.tsx) from [GestureHandler Example App](../../example) or view it directly on your phone by visiting [our expo demo](https://snack.expo.io/@adamgrzybowski/react-native-gesture-handler-demo).
57+
See the [fling example](https://github.com/software-mansion/react-native-gesture-handler/blob/master/examples/Example/src/fling/index.tsx) from [GestureHandler Example App](../../example) or view it directly on your phone by visiting [our expo demo](https://snack.expo.io/@adamgrzybowski/react-native-gesture-handler-demo).
5858

5959
```js
6060
const LongPressButton = () => (

docs/docs/api/gesture-handlers/force-gh.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ You may check if it's possible to use `ForceTouchGestureHandler` with `ForceTouc
4545

4646
## Example
4747

48-
See the [force touch handler example](https://github.com/software-mansion/react-native-gesture-handler/blob/master/examples/Example/forcetouch/index.tsx) from [GestureHandler Example App](../../example) or view it directly on your phone by visiting [our expo demo](https://snack.expo.io/@adamgrzybowski/react-native-gesture-handler-demo).
48+
See the [force touch handler example](https://github.com/software-mansion/react-native-gesture-handler/blob/master/examples/Example/src/forcetouch/index.tsx) from [GestureHandler Example App](../../example) or view it directly on your phone by visiting [our expo demo](https://snack.expo.io/@adamgrzybowski/react-native-gesture-handler-demo).
4949

5050
```js
5151
<ForceTouchGestureHandler

docs/docs/api/gesture-handlers/longpress-gh.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ Y coordinate, expressed in points, of the current position of the pointer (finge
4444

4545
## Example
4646

47-
See the [multitap example](https://github.com/software-mansion/react-native-gesture-handler/blob/master/examples/Example/multitap/index.tsx) from [GestureHandler Example App](example.md) or view it directly on your phone by visiting [our expo demo](https://snack.expo.io/@adamgrzybowski/react-native-gesture-handler-demo).
47+
See the [multitap example](https://github.com/software-mansion/react-native-gesture-handler/blob/master/examples/Example/src/multitap/index.tsx) from [GestureHandler Example App](example.md) or view it directly on your phone by visiting [our expo demo](https://snack.expo.io/@adamgrzybowski/react-native-gesture-handler-demo).
4848

4949
```js
5050
const LongPressButton = () => (

docs/docs/api/gesture-handlers/pan-gh.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ Y coordinate of the current position of the pointer (finger or a leading pointer
159159

160160
## Example
161161

162-
See the [draggable example](https://github.com/software-mansion/react-native-gesture-handler/blob/master/examples/Example/draggable/index.tsx) from [GestureHandler Example App](../../example) or view it directly on your phone by visiting [our expo demo](https://snack.expo.io/@adamgrzybowski/react-native-gesture-handler-demo).
162+
See the [draggable example](https://github.com/software-mansion/react-native-gesture-handler/blob/master/examples/Example/src/draggable/index.tsx) from [GestureHandler Example App](../../example) or view it directly on your phone by visiting [our expo demo](https://snack.expo.io/@adamgrzybowski/react-native-gesture-handler-demo).
163163

164164
```js
165165
const circleRadius = 30;

docs/docs/api/gesture-handlers/pinch-gh.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ Position expressed in points along Y axis of center anchor point of gesture
4141

4242
## Example
4343

44-
See the [scale and rotation example](https://github.com/software-mansion/react-native-gesture-handler/blob/master/examples/Example/scaleAndRotate/index.tsx) from [GestureHandler Example App](../../example) or view it directly on your phone by visiting [our expo demo](https://snack.expo.io/@adamgrzybowski/react-native-gesture-handler-demo).
44+
See the [scale and rotation example](https://github.com/software-mansion/react-native-gesture-handler/blob/master/examples/Example/src/scaleAndRotate/index.tsx) from [GestureHandler Example App](../../example) or view it directly on your phone by visiting [our expo demo](https://snack.expo.io/@adamgrzybowski/react-native-gesture-handler-demo).
4545

4646
```js
4747
export class PinchableBox extends React.Component {

docs/docs/api/gesture-handlers/rotation-gh.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ Y coordinate, expressed in points, of the gesture's central focal point (anchor)
3838

3939
## Example
4040

41-
See the [scale and rotation example](https://github.com/software-mansion/react-native-gesture-handler/blob/master/examples/Example/scaleAndRotate/index.tsx) from [GestureHandler Example App](../../example) or view it directly on your phone by visiting [our expo demo](https://snack.expo.io/@adamgrzybowski/react-native-gesture-handler-demo).
41+
See the [scale and rotation example](https://github.com/software-mansion/react-native-gesture-handler/blob/master/examples/Example/src/scaleAndRotate/index.tsx) from [GestureHandler Example App](../../example) or view it directly on your phone by visiting [our expo demo](https://snack.expo.io/@adamgrzybowski/react-native-gesture-handler-demo).
4242

4343
```js
4444
class RotableBox extends React.Component {

docs/docs/api/gesture-handlers/tap-gh.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ Y coordinate, expressed in points, of the current position of the pointer (finge
6767

6868
## Example
6969

70-
See the [multitap example](https://github.com/software-mansion/react-native-gesture-handler/blob/master/examples/Example/multitap/index.tsx) from [GestureHandler Example App](example.md) or view it directly on your phone by visiting [our expo demo](https://snack.expo.io/@adamgrzybowski/react-native-gesture-handler-demo).
70+
See the [multitap example](https://github.com/software-mansion/react-native-gesture-handler/blob/master/examples/Example/src/multitap/index.tsx) from [GestureHandler Example App](example.md) or view it directly on your phone by visiting [our expo demo](https://snack.expo.io/@adamgrzybowski/react-native-gesture-handler-demo).
7171

7272
```js
7373
export class PressBox extends Component {

0 commit comments

Comments
 (0)