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 * as admin from 'firebase-admin'; | |
import Graphcool, { fromEvent } from 'graphcool-lib'; | |
import { Request, Response } from 'express'; | |
const TAG = 'LoginHandler'; | |
const serviceAccount = require('./path/to/firebaseKey.json'); | |
const pat = '__PAT__' |
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 AnimatedFlatlist = Animated.createAnimatedComponent(FlatList); | |
... | |
render() { | |
return ( | |
<View style={styles.container}> | |
<AnimatedFlatlist | |
scrollEventThrottle={16} | |
onScroll={Animated.event( |