├── .babelrc ├── .flowconfig ├── .gitignore ├── .watchmanconfig ├── App.js ├── App.test.js ├── README.md ├── app.json ├── assets ├── californication.jpeg ├── community.jpg ├── curb.jpg ├── dr-house.jpg ├── empire.jpg ├── fresh-prince.jpg ├── friends.jpg ├── gilmore-girls.jpg ├── how-i-met-your-mother.jpg ├── parks.jpg ├── seinfeld.jpg ├── the-office.jpeg └── weeds.jpg ├── docs ├── result.gif └── troubleshooting.md ├── package.json ├── src ├── components │ ├── Button.js │ └── Card.js └── data.js └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-animation-workshop/HEAD/.babelrc -------------------------------------------------------------------------------- /.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-animation-workshop/HEAD/.flowconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | .expo/ 3 | npm-debug.* 4 | .DS_Store 5 | -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-animation-workshop/HEAD/App.js -------------------------------------------------------------------------------- /App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-animation-workshop/HEAD/App.test.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-animation-workshop/HEAD/README.md -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-animation-workshop/HEAD/app.json -------------------------------------------------------------------------------- /assets/californication.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-animation-workshop/HEAD/assets/californication.jpeg -------------------------------------------------------------------------------- /assets/community.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-animation-workshop/HEAD/assets/community.jpg -------------------------------------------------------------------------------- /assets/curb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-animation-workshop/HEAD/assets/curb.jpg -------------------------------------------------------------------------------- /assets/dr-house.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-animation-workshop/HEAD/assets/dr-house.jpg -------------------------------------------------------------------------------- /assets/empire.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-animation-workshop/HEAD/assets/empire.jpg -------------------------------------------------------------------------------- /assets/fresh-prince.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-animation-workshop/HEAD/assets/fresh-prince.jpg -------------------------------------------------------------------------------- /assets/friends.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-animation-workshop/HEAD/assets/friends.jpg -------------------------------------------------------------------------------- /assets/gilmore-girls.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-animation-workshop/HEAD/assets/gilmore-girls.jpg -------------------------------------------------------------------------------- /assets/how-i-met-your-mother.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-animation-workshop/HEAD/assets/how-i-met-your-mother.jpg -------------------------------------------------------------------------------- /assets/parks.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-animation-workshop/HEAD/assets/parks.jpg -------------------------------------------------------------------------------- /assets/seinfeld.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-animation-workshop/HEAD/assets/seinfeld.jpg -------------------------------------------------------------------------------- /assets/the-office.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-animation-workshop/HEAD/assets/the-office.jpeg -------------------------------------------------------------------------------- /assets/weeds.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-animation-workshop/HEAD/assets/weeds.jpg -------------------------------------------------------------------------------- /docs/result.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-animation-workshop/HEAD/docs/result.gif -------------------------------------------------------------------------------- /docs/troubleshooting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-animation-workshop/HEAD/docs/troubleshooting.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-animation-workshop/HEAD/package.json -------------------------------------------------------------------------------- /src/components/Button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-animation-workshop/HEAD/src/components/Button.js -------------------------------------------------------------------------------- /src/components/Card.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-animation-workshop/HEAD/src/components/Card.js -------------------------------------------------------------------------------- /src/data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-animation-workshop/HEAD/src/data.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-animation-workshop/HEAD/yarn.lock --------------------------------------------------------------------------------