This file contains 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, { useRef, useState } from "react"; | |
import { StyleSheet, TextInput, View } from "react-native"; | |
import Animated, { | |
Easing, | |
useAnimatedStyle, | |
withTiming, | |
} from "react-native-reanimated"; | |
const AnimatedTextInput = Animated.createAnimatedComponent(TextInput); |
This file contains 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, {forwardRef} from 'react'; | |
import {GetProps, Stack, styled, Text} from '@tamagui/core'; | |
import {View} from 'react-native'; | |
export const StyledFrame = styled(Stack, { | |
padding: 20, | |
backgroundColor: '$green7Dark', | |
}); | |
type RequiredProps = { |
This file contains 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, {ReactNode, useState} from 'react' | |
import {Pressable, StyleSheet, Text, View} from 'react-native' | |
import {ScrollView} from 'react-native-gesture-handler' | |
import Animated, { | |
Easing, | |
FadeIn, | |
FadeOut, | |
Layout, | |
} from 'react-native-reanimated' |