├── .expo-shared └── assets.json ├── .gitignore ├── App.tsx ├── README.md ├── app.json ├── assets ├── adaptive-icon.png ├── favicon.png ├── icon.png └── splash.png ├── babel.config.js ├── package.json ├── src ├── components │ ├── AppBlock.tsx │ ├── CloseButton.tsx │ └── Content.tsx ├── data │ └── posts.ts ├── typescript │ └── Post.ts └── utils │ └── getDate.ts ├── tsconfig.json └── yarn.lock /.expo-shared/assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eduardo-Balistieri/app-store-animation/HEAD/.expo-shared/assets.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eduardo-Balistieri/app-store-animation/HEAD/.gitignore -------------------------------------------------------------------------------- /App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eduardo-Balistieri/app-store-animation/HEAD/App.tsx -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eduardo-Balistieri/app-store-animation/HEAD/README.md -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eduardo-Balistieri/app-store-animation/HEAD/app.json -------------------------------------------------------------------------------- /assets/adaptive-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eduardo-Balistieri/app-store-animation/HEAD/assets/adaptive-icon.png -------------------------------------------------------------------------------- /assets/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eduardo-Balistieri/app-store-animation/HEAD/assets/favicon.png -------------------------------------------------------------------------------- /assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eduardo-Balistieri/app-store-animation/HEAD/assets/icon.png -------------------------------------------------------------------------------- /assets/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eduardo-Balistieri/app-store-animation/HEAD/assets/splash.png -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eduardo-Balistieri/app-store-animation/HEAD/babel.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eduardo-Balistieri/app-store-animation/HEAD/package.json -------------------------------------------------------------------------------- /src/components/AppBlock.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eduardo-Balistieri/app-store-animation/HEAD/src/components/AppBlock.tsx -------------------------------------------------------------------------------- /src/components/CloseButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eduardo-Balistieri/app-store-animation/HEAD/src/components/CloseButton.tsx -------------------------------------------------------------------------------- /src/components/Content.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eduardo-Balistieri/app-store-animation/HEAD/src/components/Content.tsx -------------------------------------------------------------------------------- /src/data/posts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eduardo-Balistieri/app-store-animation/HEAD/src/data/posts.ts -------------------------------------------------------------------------------- /src/typescript/Post.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eduardo-Balistieri/app-store-animation/HEAD/src/typescript/Post.ts -------------------------------------------------------------------------------- /src/utils/getDate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eduardo-Balistieri/app-store-animation/HEAD/src/utils/getDate.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eduardo-Balistieri/app-store-animation/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eduardo-Balistieri/app-store-animation/HEAD/yarn.lock --------------------------------------------------------------------------------