├── .expo-shared └── assets.json ├── .gitignore ├── App.js ├── README.md ├── app.json ├── assets ├── album-arts │ ├── bad-liar.jpg │ ├── death-bed.jpg │ ├── faded.jpg │ ├── hate-me.jpg │ ├── solo.jpg │ └── without-me.jpg ├── favicon.png ├── icon.png └── splash.png ├── babel.config.js ├── package.json ├── rn swipe.gif ├── src ├── Controller.jsx ├── Player.jsx └── data.js └── yarn.lock /.expo-shared/assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShivamJoker/React-Native-Media-Player-Carousel/HEAD/.expo-shared/assets.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShivamJoker/React-Native-Media-Player-Carousel/HEAD/.gitignore -------------------------------------------------------------------------------- /App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShivamJoker/React-Native-Media-Player-Carousel/HEAD/App.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShivamJoker/React-Native-Media-Player-Carousel/HEAD/README.md -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShivamJoker/React-Native-Media-Player-Carousel/HEAD/app.json -------------------------------------------------------------------------------- /assets/album-arts/bad-liar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShivamJoker/React-Native-Media-Player-Carousel/HEAD/assets/album-arts/bad-liar.jpg -------------------------------------------------------------------------------- /assets/album-arts/death-bed.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShivamJoker/React-Native-Media-Player-Carousel/HEAD/assets/album-arts/death-bed.jpg -------------------------------------------------------------------------------- /assets/album-arts/faded.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShivamJoker/React-Native-Media-Player-Carousel/HEAD/assets/album-arts/faded.jpg -------------------------------------------------------------------------------- /assets/album-arts/hate-me.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShivamJoker/React-Native-Media-Player-Carousel/HEAD/assets/album-arts/hate-me.jpg -------------------------------------------------------------------------------- /assets/album-arts/solo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShivamJoker/React-Native-Media-Player-Carousel/HEAD/assets/album-arts/solo.jpg -------------------------------------------------------------------------------- /assets/album-arts/without-me.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShivamJoker/React-Native-Media-Player-Carousel/HEAD/assets/album-arts/without-me.jpg -------------------------------------------------------------------------------- /assets/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShivamJoker/React-Native-Media-Player-Carousel/HEAD/assets/favicon.png -------------------------------------------------------------------------------- /assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShivamJoker/React-Native-Media-Player-Carousel/HEAD/assets/icon.png -------------------------------------------------------------------------------- /assets/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShivamJoker/React-Native-Media-Player-Carousel/HEAD/assets/splash.png -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShivamJoker/React-Native-Media-Player-Carousel/HEAD/babel.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShivamJoker/React-Native-Media-Player-Carousel/HEAD/package.json -------------------------------------------------------------------------------- /rn swipe.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShivamJoker/React-Native-Media-Player-Carousel/HEAD/rn swipe.gif -------------------------------------------------------------------------------- /src/Controller.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShivamJoker/React-Native-Media-Player-Carousel/HEAD/src/Controller.jsx -------------------------------------------------------------------------------- /src/Player.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShivamJoker/React-Native-Media-Player-Carousel/HEAD/src/Player.jsx -------------------------------------------------------------------------------- /src/data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShivamJoker/React-Native-Media-Player-Carousel/HEAD/src/data.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShivamJoker/React-Native-Media-Player-Carousel/HEAD/yarn.lock --------------------------------------------------------------------------------