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 LottieView from 'lottie-react-native' | |
import Animated, { | |
makeMutable, | |
useAnimatedProps, | |
useAnimatedStyle, | |
useFrameCallback, | |
useSharedValue, | |
withTiming, | |
} from 'react-native-reanimated' | |
import { Button, XStack } from 'tamagui' |
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 { UseThemeResult } from '@tamagui/core' | |
import React from 'react' | |
import Animated, { | |
Easing, | |
SharedValue, | |
interpolateColor, | |
useAnimatedStyle, | |
useDerivedValue, | |
useSharedValue, | |
withRepeat, |
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 { useWindowDimensions } from 'react-native' | |
import { Gesture } from 'react-native-gesture-handler' | |
import Animated, { | |
Extrapolation, | |
WithSpringConfig, | |
interpolate, | |
scrollTo, | |
useAnimatedRef, | |
useAnimatedScrollHandler, | |
useAnimatedStyle, |
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 { | |
AVPlaybackSource, | |
AVPlaybackStatus, | |
AVPlaybackStatusError, | |
AVPlaybackStatusSuccess, | |
Audio, | |
} from 'expo-av' | |
const FADE_DURATION = 4000 |
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 from 'react' | |
import { usePrevious } from './usePrevious' | |
export type QueryStatus = 'idle' | 'loading' | 'error' | 'success' | |
type QueryClientProviderProps = { | |
children: React.ReactNode | |
client: QueryClient | |
} |
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
const lunr = require('lunr') | |
require('lunr-languages/lunr.stemmer.support')(lunr) | |
require('lunr-languages/lunr.fr')(lunr) | |
require('./lunr.unicodeNormalizer')(lunr) | |
var idx = lunr(function () { | |
this.use(lunr.fr) | |
this.use(lunr.unicodeNormalizer) | |
... |
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 glamorous from 'glamorous' | |
const Row = glamorous.div(({ extended }) => ({ // THIS IS OK | |
position: 'relative', | |
maxWidth: extended ? 1330 : 1200, | |
margin: '0 auto', | |
boxsizing: 'border-box', | |
display: 'flex', | |
flexDirection: 'row', | |
flexWrap: 'wrap', |
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, { PropTypes, Component } from 'react' | |
import { | |
Animated, | |
ScrollView, | |
Text, | |
View, | |
} from 'react-native' | |
import EStyleSheet from 'react-native-extended-stylesheet' | |
const styles = EStyleSheet.create({ |
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
{ | |
"name": "este-app", | |
"description": "Robust and comfortable dev stack for isomorphic web apps", | |
"author": "Daniel Steigerwald", | |
"version": "9.2.0", | |
"private": true, | |
"scripts": { | |
"postinstall": "cd node_modules/material-ui && npm install && npm uninstall react && gulp build --production", | |
"start": "node src/server", | |
"test": "gulp test", |
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
<App> | |
<Component> | |
<Component2> | |
<Component3> | |
<Child/> | |
</Component3> | |
</Component2> | |
</Component> | |
</App> |
NewerOlder