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 React, { useEffect, useState } from 'react'; | |
import { Dimensions, SafeAreaView, StyleSheet, Text, View } from 'react-native'; | |
import { | |
PanGestureHandler, | |
TouchableOpacity, | |
ScrollView, | |
} from 'react-native-gesture-handler'; | |
import Animated, { | |
useAnimatedGestureHandler, | |
useAnimatedStyle, |
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
// Expo SDK40 | |
// expo-blur: ~8.2.2 | |
// expo-haptics: ~8.4.0 | |
// react-native-gesture-handler: ~1.8.0 | |
// react-native-reanimated: ^2.0.0-rc.0 | |
// react-native-safe-area-context: 3.1.9 | |
import React, { useState } from 'react'; | |
import { | |
Image, |
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
/** | |
* Fork of: https://gist.github.com/weslleih/b6e7628416a052963349494747aed659 | |
* Important notice: when using with node you need the package `full icu` installed and configured or compile node with full-icu support. | |
* This way the compiled js code can run using language data other then `en-us`. | |
*/ | |
export {} | |
declare global { | |
interface Date { | |
addDays(days: number, useThis?: boolean): Date; |