├── .DS_Store ├── .babelrc ├── .gitignore ├── LICENSE ├── README.md ├── app ├── .DS_Store ├── AppComponents.js ├── Card.js ├── CardComponents.js ├── LICENSE ├── assets │ ├── LatoLight.ttf │ ├── LatoLightItalic.ttf │ └── LatoRegular.ttf ├── constants.js └── index.js ├── exp.json ├── expanding-collection.gif ├── main.js └── package.json /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamTrz/RN-expanding-collection/HEAD/.DS_Store -------------------------------------------------------------------------------- /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamTrz/RN-expanding-collection/HEAD/.babelrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamTrz/RN-expanding-collection/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamTrz/RN-expanding-collection/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamTrz/RN-expanding-collection/HEAD/README.md -------------------------------------------------------------------------------- /app/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamTrz/RN-expanding-collection/HEAD/app/.DS_Store -------------------------------------------------------------------------------- /app/AppComponents.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamTrz/RN-expanding-collection/HEAD/app/AppComponents.js -------------------------------------------------------------------------------- /app/Card.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamTrz/RN-expanding-collection/HEAD/app/Card.js -------------------------------------------------------------------------------- /app/CardComponents.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamTrz/RN-expanding-collection/HEAD/app/CardComponents.js -------------------------------------------------------------------------------- /app/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamTrz/RN-expanding-collection/HEAD/app/LICENSE -------------------------------------------------------------------------------- /app/assets/LatoLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamTrz/RN-expanding-collection/HEAD/app/assets/LatoLight.ttf -------------------------------------------------------------------------------- /app/assets/LatoLightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamTrz/RN-expanding-collection/HEAD/app/assets/LatoLightItalic.ttf -------------------------------------------------------------------------------- /app/assets/LatoRegular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamTrz/RN-expanding-collection/HEAD/app/assets/LatoRegular.ttf -------------------------------------------------------------------------------- /app/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamTrz/RN-expanding-collection/HEAD/app/constants.js -------------------------------------------------------------------------------- /app/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamTrz/RN-expanding-collection/HEAD/app/index.js -------------------------------------------------------------------------------- /exp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamTrz/RN-expanding-collection/HEAD/exp.json -------------------------------------------------------------------------------- /expanding-collection.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamTrz/RN-expanding-collection/HEAD/expanding-collection.gif -------------------------------------------------------------------------------- /main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamTrz/RN-expanding-collection/HEAD/main.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamTrz/RN-expanding-collection/HEAD/package.json --------------------------------------------------------------------------------