Open m-bert opened 2 weeks ago
This PR adds Text component to Gesture Handler.
Text
Upon investigating #3159 we decided that it will be better to add our own Text component, instead of forcing users to create their own version of Text with NativeViewGestureHandler.
NativeViewGestureHandler
Description
This PR adds
Text
component to Gesture Handler.Upon investigating #3159 we decided that it will be better to add our own
Text
component, instead of forcing users to create their own version ofText
withNativeViewGestureHandler
.Test plan
New example:
```jsx import { useState } from 'react'; import { StyleSheet } from 'react-native'; import { Text, GestureHandlerRootView, TouchableOpacity, } from 'react-native-gesture-handler'; export default function NestedText() { const [counter, setCounter] = useState(0); return (