From 60c8b946113d84d07c0205785e015a66ce3df14b Mon Sep 17 00:00:00 2001 From: Umakant Vashishtha Date: Fri, 28 Jan 2022 14:46:26 +0530 Subject: [PATCH] Fix typo in gestures.mdx and gesture_handlers.mdx --- pages/app/gestures.mdx | 2 +- pages/app/gestures/gesture_handlers.mdx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pages/app/gestures.mdx b/pages/app/gestures.mdx index 91d72d4..afeefd5 100644 --- a/pages/app/gestures.mdx +++ b/pages/app/gestures.mdx @@ -3,6 +3,6 @@ We use gestures to support user interactions that are more complex than pressing There are 2 common approaches: - `PanResponder` - The built-in gesture API -- `react-native-gesture-hander` - A library that bridges built-in native gesture handling code +- `react-native-gesture-handler` - A library that bridges built-in native gesture handling code Let's look at each of these in more detail. diff --git a/pages/app/gestures/gesture_handlers.mdx b/pages/app/gestures/gesture_handlers.mdx index 5d8a3e0..410878c 100644 --- a/pages/app/gestures/gesture_handlers.mdx +++ b/pages/app/gestures/gesture_handlers.mdx @@ -1,6 +1,6 @@ import panGestureHandler from '../../../examples/files/gestures/panGestureHandler.tsx' -With the library [`react-native-gesture-hander`](https://github.com/software-mansion/react-native-gesture-handler), we can use the native gesture recognition APIs. +With the library [`react-native-gesture-handler`](https://github.com/software-mansion/react-native-gesture-handler), we can use the native gesture recognition APIs. We can use these React components to detect gestures: