├── .babelrc ├── .expo └── settings.json ├── .gitignore ├── .npmignore ├── README.md ├── example ├── .expo-shared │ └── assets.json ├── .expo │ ├── packager-info.json │ └── settings.json ├── .gitignore ├── App.js ├── app.json ├── assets │ ├── bouncingfruits.json │ ├── icon.png │ └── splash.png ├── babel.config.js ├── package.json ├── src │ └── FruitsList.js └── yarn.lock ├── index.js ├── package.json ├── src ├── PullToRefreshFlatlist.jsx └── RefreshHeader.jsx └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Groftware/LottieFlatlist/HEAD/.babelrc -------------------------------------------------------------------------------- /.expo/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Groftware/LottieFlatlist/HEAD/.expo/settings.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Groftware/LottieFlatlist/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Groftware/LottieFlatlist/HEAD/.npmignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Groftware/LottieFlatlist/HEAD/README.md -------------------------------------------------------------------------------- /example/.expo-shared/assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Groftware/LottieFlatlist/HEAD/example/.expo-shared/assets.json -------------------------------------------------------------------------------- /example/.expo/packager-info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Groftware/LottieFlatlist/HEAD/example/.expo/packager-info.json -------------------------------------------------------------------------------- /example/.expo/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Groftware/LottieFlatlist/HEAD/example/.expo/settings.json -------------------------------------------------------------------------------- /example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Groftware/LottieFlatlist/HEAD/example/.gitignore -------------------------------------------------------------------------------- /example/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Groftware/LottieFlatlist/HEAD/example/App.js -------------------------------------------------------------------------------- /example/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Groftware/LottieFlatlist/HEAD/example/app.json -------------------------------------------------------------------------------- /example/assets/bouncingfruits.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Groftware/LottieFlatlist/HEAD/example/assets/bouncingfruits.json -------------------------------------------------------------------------------- /example/assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Groftware/LottieFlatlist/HEAD/example/assets/icon.png -------------------------------------------------------------------------------- /example/assets/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Groftware/LottieFlatlist/HEAD/example/assets/splash.png -------------------------------------------------------------------------------- /example/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Groftware/LottieFlatlist/HEAD/example/babel.config.js -------------------------------------------------------------------------------- /example/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Groftware/LottieFlatlist/HEAD/example/package.json -------------------------------------------------------------------------------- /example/src/FruitsList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Groftware/LottieFlatlist/HEAD/example/src/FruitsList.js -------------------------------------------------------------------------------- /example/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Groftware/LottieFlatlist/HEAD/example/yarn.lock -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Groftware/LottieFlatlist/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Groftware/LottieFlatlist/HEAD/package.json -------------------------------------------------------------------------------- /src/PullToRefreshFlatlist.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Groftware/LottieFlatlist/HEAD/src/PullToRefreshFlatlist.jsx -------------------------------------------------------------------------------- /src/RefreshHeader.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Groftware/LottieFlatlist/HEAD/src/RefreshHeader.jsx -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Groftware/LottieFlatlist/HEAD/yarn.lock --------------------------------------------------------------------------------