This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import { useCallback, useState } from 'react'; | |
| import { LayoutChangeEvent, SafeAreaView, ScrollView, StyleProp, StyleSheet, Text, View, ViewStyle } from 'react-native'; | |
| import { Gesture, GestureDetector, GestureHandlerRootView } from 'react-native-gesture-handler'; | |
| import Animated, { SharedValue, useAnimatedStyle, useDerivedValue, useSharedValue, withSpring } from 'react-native-reanimated'; | |
| import { runOnJS } from 'react-native-worklets'; | |
| type Row = { key: string; label: string }; | |
| const SEPARATOR_HEIGHT = 16; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Useful links to make dev possible on an arm64 macos machine without Rosetta 2 : | |
| VSCode for arm64 : | |
| https://code.visualstudio.com/insiders/ | |
| iOS and cocoapods issue : | |
| https://stackoverflow.com/questions/64718780/getting-error-while-installing-library-from-pod | |
| Active support issue : |