import React from 'react'; import { StyleSheet, Text, View, ScrollView, Button, Animated } from 'react-native'; import TestCard from './TestCard'; import TestAnimatedCard from './TestAnimatedCard'; export default class AnchorPointDemo extends React.Component { render() { return ( ); } } const styles = StyleSheet.create({ container: { flex: 1, backgroundColor: '#fff', marginTop: 64 }, row: { flexDirection: 'row', paddingHorizontal: 60, justifyContent: 'space-between' }, marginTop: { marginTop: 300 } });