├── .gitignore ├── .npmignore ├── LICENSE ├── README.md ├── example.gif ├── example ├── App.js ├── app.json ├── assets │ ├── favicon.png │ ├── icon.png │ └── splash.png ├── babel.config.js ├── package.json ├── src │ └── ShimmerPlaceholder.js └── yarn.lock ├── facebook-load-data.gif ├── index.d.ts ├── lib └── ShimmerPlaceholder.js ├── package.json └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomzaku/react-native-shimmer-placeholder/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomzaku/react-native-shimmer-placeholder/HEAD/.npmignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomzaku/react-native-shimmer-placeholder/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomzaku/react-native-shimmer-placeholder/HEAD/README.md -------------------------------------------------------------------------------- /example.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomzaku/react-native-shimmer-placeholder/HEAD/example.gif -------------------------------------------------------------------------------- /example/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomzaku/react-native-shimmer-placeholder/HEAD/example/App.js -------------------------------------------------------------------------------- /example/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomzaku/react-native-shimmer-placeholder/HEAD/example/app.json -------------------------------------------------------------------------------- /example/assets/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomzaku/react-native-shimmer-placeholder/HEAD/example/assets/favicon.png -------------------------------------------------------------------------------- /example/assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomzaku/react-native-shimmer-placeholder/HEAD/example/assets/icon.png -------------------------------------------------------------------------------- /example/assets/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomzaku/react-native-shimmer-placeholder/HEAD/example/assets/splash.png -------------------------------------------------------------------------------- /example/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomzaku/react-native-shimmer-placeholder/HEAD/example/babel.config.js -------------------------------------------------------------------------------- /example/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomzaku/react-native-shimmer-placeholder/HEAD/example/package.json -------------------------------------------------------------------------------- /example/src/ShimmerPlaceholder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomzaku/react-native-shimmer-placeholder/HEAD/example/src/ShimmerPlaceholder.js -------------------------------------------------------------------------------- /example/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomzaku/react-native-shimmer-placeholder/HEAD/example/yarn.lock -------------------------------------------------------------------------------- /facebook-load-data.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomzaku/react-native-shimmer-placeholder/HEAD/facebook-load-data.gif -------------------------------------------------------------------------------- /index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomzaku/react-native-shimmer-placeholder/HEAD/index.d.ts -------------------------------------------------------------------------------- /lib/ShimmerPlaceholder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomzaku/react-native-shimmer-placeholder/HEAD/lib/ShimmerPlaceholder.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomzaku/react-native-shimmer-placeholder/HEAD/package.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomzaku/react-native-shimmer-placeholder/HEAD/yarn.lock --------------------------------------------------------------------------------